PrismLauncher/launcher/screenshots/Screenshot.h
Sefa Eyeoglu 1d468ac35a
chore: reformat
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-02 18:35:35 +02:00

17 lines
308 B
C++

#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;
};