IW4M-Admin/SharedLibraryCore/Dtos/IW4MAdminInfo.cs

25 lines
768 B
C#
Raw Normal View History

using System;
using static SharedLibraryCore.Server;
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; }
/// <summary>
2022-01-26 11:32:16 -05:00
/// specifies the game name filter
/// </summary>
public Game? Game { get; set; }
/// <summary>
2022-01-26 11:32:16 -05:00
/// collection of unique game names being monitored
/// </summary>
public Game[] ActiveServerGames { get; set; }
}
2022-01-26 11:32:16 -05:00
}