mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-09 23:00:57 -05:00
migrated to ASP.Net Core
This commit is contained in:
22
SharedLibrary/Dtos/ServerInfo.cs
Normal file
22
SharedLibrary/Dtos/ServerInfo.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SharedLibrary.Dtos
|
||||
{
|
||||
public class ServerInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public int Port { get; set; }
|
||||
public string Map { get; set; }
|
||||
public string GameType { get; set; }
|
||||
public int ClientCount { get; set; }
|
||||
public int MaxClients { get; set; }
|
||||
public List<Chat> ChatHistory { get; set; }
|
||||
public List<PlayerInfo> Players { get; set; }
|
||||
public Helpers.PlayerHistory[] PlayerHistory { get; set; }
|
||||
public int ID { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user