sharedlibrarycoredtos IW4MAdminInfo - RaidMax/IW4M-Admin GitHub Wiki
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Dtos
SharedLibraryCore.Dtos.IW4MAdminInfo[[IW4MAdminInfo]]
end
Type | Name | Methods |
---|---|---|
Game``[] |
ActiveServerGames collection of unique game names being monitored |
get, set |
Nullable <Game > |
Game specifies the game name filter |
get, set |
int |
MaxConcurrentClients |
get, set |
DateTime |
MaxConcurrentClientsTime |
get, set |
int |
RecentClientCount |
get, set |
int |
TotalAvailableClientSlots |
get, set |
int |
TotalClientCount |
get, set |
int |
TotalOccupiedClientSlots |
get, set |
public 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; }
public Nullable<Game> Game { get; set; }
specifies the game name filter
public Game ActiveServerGames { get; set; }
collection of unique game names being monitored
Generated with ModularDoc