summaryrefslogtreecommitdiffstats
path: root/api/logic/screenshots/Screenshot.h
blob: 2c70ecf59605ee9877d6e18f6676279db8351e61 (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;