IW4M-Admin/Application/API/Master/ApiInstance.cs

21 lines
503 B
C#
Raw Normal View History

2018-04-18 16:46:53 -04:00
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; }
}
}