mirror of
https://github.com/MelanieT/OpenSimConsoleClient.git
synced 2026-08-14 09:02:01 +00:00
24 lines
294 B
C++
24 lines
294 B
C++
#ifndef CONNECTIONDATA_H
|
|
#define CONNECTIONDATA_H
|
|
|
|
#include <QString>
|
|
#include <QUuid>
|
|
|
|
class ConnectionData
|
|
{
|
|
public:
|
|
ConnectionData();
|
|
|
|
QUuid Uuid;
|
|
QString Name;
|
|
|
|
QUuid Group;
|
|
|
|
QString Host;
|
|
int Port;
|
|
QString User;
|
|
QString Pass;
|
|
};
|
|
|
|
#endif // CONNECTIONDATA_H
|