using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AirWheel.Cycling.Entity { /// /// /// public class ResponseHotfix: BaseResponseModel { /// /// 修复版本 /// [JsonProperty("patchVersion")] public string PatchVersion { get; set; } /// /// 下载URL列表 /// [JsonProperty("downloadUrls")] public IList DownloadUrls { get; set; } } }