gserver-remake/GServer.Common/Game/Entities/ServerListing.cs
Aaron Yarborough 6d80785dfd refactor
2024-09-11 21:38:32 +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; }
}