IW4M-Admin/Application/API/Master/ApiInstance.cs
2018-04-18 15:46:53 -05:00

21 lines
503 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Newtonsoft.Json;
using RestEase;
namespace IW4MAdmin.Application.API.Master
{
public class ApiInstance
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("uptime")]
public int Uptime { get; set; }
[JsonProperty("version")]
public float Version { get; set; }
[JsonProperty("servers")]
public List<ApiServer> Servers { get; set; }
}
}