nexusforever/Source/NexusForever.Database.Auth/Model/ServerModel.cs

12 lines
290 B
C#
Raw Permalink Normal View History

namespace NexusForever.Database.Auth.Model
2018-10-09 12:03:35 +13:00
{
public class ServerModel
2018-10-09 12:03:35 +13:00
{
public byte Id { get; set; }
public string Name { get; set; }
public string Host { get; set; }
public ushort Port { get; set; }
public byte Type { get; set; }
}
}