summaryrefslogtreecommitdiffstats
path: root/logic/screenshots/Screenshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/screenshots/Screenshot.h')
-rw-r--r--logic/screenshots/Screenshot.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/logic/screenshots/Screenshot.h b/logic/screenshots/Screenshot.h
new file mode 100644
index 00000000..194e70e5
--- /dev/null
+++ b/logic/screenshots/Screenshot.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <QDateTime>
+#include <QString>
+#include <memory>
+
+struct ScreenShot
+{
+ QDateTime timestamp;
+ QString file;
+ QString url;
+ QString imgurId;
+};
+
+typedef std::shared_ptr<ScreenShot> ScreenshotPtr;