-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoredtos IW4MAdminInfo
RaidMax edited this page May 21, 2023
·
1 revision
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