24 lines
705 B
C#
Raw Normal View History

2018-02-21 19:29:23 -06:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Dtos
2018-02-21 19:29:23 -06:00
{
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<ChatInfo> ChatHistory { get; set; }
2018-02-21 19:29:23 -06:00
public List<PlayerInfo> Players { get; set; }
public Helpers.PlayerHistory[] PlayerHistory { get; set; }
public long ID { get; set; }
public bool Online { get; set; }
2018-02-21 19:29:23 -06:00
}
}