gserver-remake/GServer.Common/Game/Entities/ServerListing.cs
2024-05-19 22:13:48 +01:00

11 lines
365 B
C#

namespace GServer.Common.Game.Entities;
public record ServerListing
{
public required string Name { get; set; }
public required string Description { get; set; }
public ushort Playercount { get; set; }
public required string IPAddress { get; set; }
public ushort Port { get; set; }
public ServerTier ServerTier { get; set; }
}