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