IW4M-Admin/Application/API/Master/ApiServer.cs
RaidMax 5ac8a55c72 fixes for new polling setup
update database model for alias (nullable ip)
heartbeats now send ip to master server
2018-11-25 20:00:36 -06:00

30 lines
857 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace IW4MAdmin.Application.API.Master
{
public class ApiServer
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("ip")]
public string IPAddress { get; set; }
[JsonProperty("port")]
public short Port { get; set; }
[JsonProperty("gametype")]
public string Gametype { get; set; }
[JsonProperty("map")]
public string Map { get; set; }
[JsonProperty("game")]
public string Game { get; set; }
[JsonProperty("hostname")]
public string Hostname { get; set; }
[JsonProperty("clientnum")]
public int ClientNum { get; set; }
[JsonProperty("maxclientnum")]
public int MaxClientNum { get; set; }
}
}