using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace PckStudio.Core.Json { internal class UpdateInformation { [JsonProperty("version")] public string Version { get; set; } [JsonProperty("url")] public string Url { get; set; } [JsonProperty("changelog")] public string Changelog { get; set; } [JsonProperty("mandatory")] public bool Mandatory { get; set; } } }