//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Interfaces;
///
/// The state info about a server.
///
public record ServerInfo(ushort Id, string Description, int CurrentConnections, int MaximumConnections)
{
///
/// Gets or sets the count of current connections.
///
public int CurrentConnections { get; set; } = CurrentConnections;
}