mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-13 00:28:10 -05:00
adding master api project
This commit is contained in:
20
Application/API/Master/ApiInstance.cs
Normal file
20
Application/API/Master/ApiInstance.cs
Normal file
@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user