mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 23:58:08 -05:00
add initial CS:GO support
This commit is contained in:
35
SharedLibraryCore/Interfaces/IStatusResponse.cs
Normal file
35
SharedLibraryCore/Interfaces/IStatusResponse.cs
Normal file
@ -0,0 +1,35 @@
|
||||
using SharedLibraryCore.Database.Models;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// describes the collection of data returned from a status query
|
||||
/// </summary>
|
||||
public interface IStatusResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// name of the map
|
||||
/// </summary>
|
||||
string Map { get; }
|
||||
|
||||
/// <summary>
|
||||
/// gametype/mode
|
||||
/// </summary>
|
||||
string GameType { get; }
|
||||
|
||||
/// <summary>
|
||||
/// server name
|
||||
/// </summary>
|
||||
string Hostname { get; }
|
||||
|
||||
/// <summary>
|
||||
/// max number of players
|
||||
/// </summary>
|
||||
int? MaxClients { get; }
|
||||
|
||||
/// <summary>
|
||||
/// active clients
|
||||
/// </summary>
|
||||
EFClient[] Clients { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user