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

#include <QString>

class ServerInfo
{
public:
  QString name;
  QString description;
  QString address;
  quint16 port = 0;
  QString protocol = "ws";

  QString toString() const;
};