mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
18 lines
284 B
C++
18 lines
284 B
C++
|
|
#ifndef DNSPROTOCOLCONFIG_H
|
||
|
|
#define DNSPROTOCOLCONFIG_H
|
||
|
|
|
||
|
|
#include <QJsonObject>
|
||
|
|
|
||
|
|
namespace amnezia
|
||
|
|
{
|
||
|
|
|
||
|
|
struct DnsProtocolConfig {
|
||
|
|
QJsonObject toJson() const;
|
||
|
|
static DnsProtocolConfig fromJson(const QJsonObject& json);
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace amnezia
|
||
|
|
|
||
|
|
#endif // DNSPROTOCOLCONFIG_H
|
||
|
|
|