pollymc/logic/screenshots/Screenshot.h
2014-02-25 00:51:24 +01:00

16 lines
217 B
C++

#pragma once
#include <QDateTime>
#include <QString>
#include <memory>
struct ScreenShot
{
QDateTime timestamp;
QString file;
QString url;
QString imgurId;
};
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;