amnezia-client/client/core/models/protocols/protocolConfig.h
2025-06-20 22:18:47 +08:00

16 lines
258 B
C++

#ifndef PROTOCOLCONFIG_H
#define PROTOCOLCONFIG_H
#include <QJsonObject>
class ProtocolConfig
{
public:
ProtocolConfig(const QString &protocolName);
QString protocolName;
virtual QJsonObject toJson() const;
};
#endif // PROTOCOLCONFIG_H