2016-06-08 22:29:04 +01:00
|
|
|
|
namespace FFXIVClassic_Lobby_Server.dataobjects
|
2015-08-26 13:38:58 -04:00
|
|
|
|
{
|
|
|
|
|
class World
|
|
|
|
|
{
|
2018-10-20 12:08:47 -04:00
|
|
|
|
public readonly ushort id;
|
|
|
|
|
public readonly string address;
|
|
|
|
|
public readonly ushort port;
|
|
|
|
|
public readonly ushort listPosition;
|
|
|
|
|
public readonly ushort population;
|
|
|
|
|
public readonly string name;
|
|
|
|
|
public readonly bool isActive;
|
|
|
|
|
|
|
|
|
|
public World(
|
|
|
|
|
ushort id,
|
|
|
|
|
string address,
|
|
|
|
|
ushort port,
|
|
|
|
|
ushort listPosition,
|
|
|
|
|
ushort population,
|
|
|
|
|
string name,
|
|
|
|
|
bool isActive)
|
|
|
|
|
{
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.address = address;
|
|
|
|
|
this.port = port;
|
|
|
|
|
this.listPosition = listPosition;
|
|
|
|
|
this.population = population;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.isActive = isActive;
|
|
|
|
|
}
|
2015-08-26 13:38:58 -04:00
|
|
|
|
}
|
|
|
|
|
}
|