aboutsummaryrefslogtreecommitdiff
path: root/src/network/serverinfo.h
blob: b7e00697056d4cc7a7d69393b4db6fceedf0fc06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <QString>

class ServerInfo
{
public:
  QString name;
  QString description;
  QString address;
  quint16 port = 0;
  bool legacy = false;
  QString scheme = "ws";

  QString toString() const;
};