status-desktop/app/src/Application/DataProvider.h

19 lines
281 B
C
Raw Normal View History

#pragma once
#include <QtCore/QtCore>
2022-10-19 13:41:53 +00:00
#include <StatusGo/SettingsAPI>
2022-10-19 13:41:53 +00:00
namespace Status::Application
{
2022-10-19 13:41:53 +00:00
class DataProvider : public QObject
{
Q_OBJECT
2022-10-19 13:41:53 +00:00
public:
DataProvider();
2022-10-19 13:41:53 +00:00
StatusGo::Settings::SettingsDto getSettings() const;
};
} // namespace Status::Application