using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutoUpdater.Util { [Serializable] public class Result { [JsonProperty("success")] public bool success { get; set; } [JsonProperty("message")] public string message { get; set; } [JsonProperty("code")] public int code { get; set; } [JsonProperty("result")] public T result { get; set; } } }