mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 04:07:48 +00:00
20 lines
445 B
C#
20 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFXIVClassic_Lobby_Server.dataobjects
|
|
{
|
|
class DBWorld
|
|
{
|
|
public ushort id;
|
|
public string address;
|
|
public ushort port;
|
|
public ushort listPosition;
|
|
public ushort population;
|
|
public string name;
|
|
public bool isActive;
|
|
public string motd;
|
|
}
|
|
}
|