Mineplex2018-withcommit/Website/LOC.Website.Common/ServerStatus.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

18 lines
339 B
C#

namespace LOC.Website.Common
{
public class ServerStatus
{
public string IpAddress { get; set; }
public int Players { get; set; }
public int MaxPlayers { get; set; }
public bool Success { get; set; }
public string Name { get; set; }
public string Image { get; set; }
}
}