using System; using Data.Models; namespace SharedLibraryCore.Dtos { public class IW4MAdminInfo { public int TotalClientCount { get; set; } public int RecentClientCount { get; set; } public int TotalOccupiedClientSlots { get; set; } public int TotalAvailableClientSlots { get; set; } public int MaxConcurrentClients { get; set; } public DateTime MaxConcurrentClientsTime { get; set; } /// /// specifies the game name filter /// public Reference.Game? Game { get; set; } /// /// collection of unique game names being monitored /// public Reference.Game[] ActiveServerGames { get; set; } } }