mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-24 21:39:24 +00:00
45f5a53069
Closes: #6747
18 lines
307 B
C++
18 lines
307 B
C++
#pragma once
|
|
|
|
#include <StatusGo/ChatAPI>
|
|
#include <QtCore/QtCore>
|
|
|
|
namespace Status::ChatSection {
|
|
|
|
class ChatDataProvider: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChatDataProvider();
|
|
|
|
StatusGo::Chats::ChannelGroupDto getSectionData(const QString& sectionId) const;
|
|
};
|
|
}
|