2020-01-23 21:03:54 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace WebInterface
|
|
|
|
|
{
|
|
|
|
|
public class Server
|
|
|
|
|
{
|
|
|
|
|
public DateTime SpawnedAtUtc { get; set; } = DateTime.UtcNow;
|
|
|
|
|
public int Port { get; set; }
|
|
|
|
|
public bool IsStarted { get; set; }
|
|
|
|
|
public string CommandLine { get; set; }
|
|
|
|
|
public int CurrentPlayers { get; set; }
|
|
|
|
|
public int MaximumPlayers { get; set; }
|
|
|
|
|
public string GameType { get; set; }
|
2020-01-27 13:23:00 +01:00
|
|
|
|
public string Mod { get; set; }
|
2020-01-23 21:03:54 +01:00
|
|
|
|
public IList<Player> Players { get; set; } = new List<Player>();
|
|
|
|
|
}
|
|
|
|
|
}
|