mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 12:17:46 +00:00
19 lines
410 B
C#
19 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFXIVClassic_Lobby_Server.dataobjects
|
|
{
|
|
class World
|
|
{
|
|
public ushort id;
|
|
public string address;
|
|
public ushort port;
|
|
public ushort unknown;
|
|
public ushort population;
|
|
public string name;
|
|
public bool isActive;
|
|
}
|
|
}
|