using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class ResponseHotfix
{
///
/// 修复版本
///
[JsonProperty("patchVersion")]
public string PatchVersion { get; set; }
///
/// 下载URL列表
///
[JsonProperty("downloadUrls")]
public string DownloadUrls { get; set; }
///
/// 版本说明
///
public string versionNote { get; set; }
}
public class ResponseUserAgreement
{
///
/// 协议内容
///
public string Content
{
get;set;
}
}
///
///
///
public class HotFixModel
{
///
/// 版本名称
///
public string VersionName { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 版本号
///
public int VersionNo { get; set; }
}
}