aboutsummaryrefslogtreecommitdiff
path: root/launcher/screenshots/Screenshot.h
blob: 767f390617efa08c62e9d9fcc4cfe650676d2aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <QDateTime>
#include <QFileInfo>
#include <QString>
#include <memory>

struct ScreenShot {
    using Ptr = std::shared_ptr<ScreenShot>;

    ScreenShot(QFileInfo file) { m_file = file; }
    QFileInfo m_file;
    QString m_url;
    QString m_imgurId;
    QString m_imgurDeleteHash;
};