2018-09-06 14:25:58 -04:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Application.API.GameLogServer
|
|
|
|
|
{
|
|
|
|
|
public class LogInfo
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("success")]
|
|
|
|
|
public bool Success { get; set; }
|
|
|
|
|
[JsonProperty("length")]
|
|
|
|
|
public int Length { get; set; }
|
|
|
|
|
[JsonProperty("data")]
|
|
|
|
|
public string Data { get; set; }
|
2019-07-24 20:15:07 -04:00
|
|
|
|
[JsonProperty("next_key")]
|
|
|
|
|
public string NextKey { get; set; }
|
2018-09-06 14:25:58 -04:00
|
|
|
|
}
|
|
|
|
|
}
|