summaryrefslogtreecommitdiffstats
path: root/api/logic/screenshots/Screenshot.h
blob: 9db3a8a164e932bbc66e847949b4f7a660c5a81c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

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

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

typedef std::shared_ptr<ScreenShot> ScreenshotPtr;