using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// WdkRexSoftwareInfoCheckResponse.
///
public class WdkRexSoftwareInfoCheckResponse : TopResponse
{
///
/// 应用名称
///
[XmlElement("app_name")]
public string AppName { get; set; }
///
/// 是否自动安装
///
[XmlElement("auto_install")]
public bool AutoInstall { get; set; }
///
/// 配置信息
///
[XmlElement("config_json")]
public string ConfigJson { get; set; }
///
/// 更新链接
///
[XmlElement("download_url")]
public string DownloadUrl { get; set; }
///
/// 应用图标
///
[XmlElement("icon_url")]
public string IconUrl { get; set; }
///
/// 包md5
///
[XmlElement("md5")]
public string Md5 { get; set; }
///
/// 包名
///
[XmlElement("package_name")]
public string PackageName { get; set; }
///
/// 二维码
///
[XmlElement("qrcode")]
public string Qrcode { get; set; }
///
/// 包大小
///
[XmlElement("size")]
public long Size { get; set; }
///
/// 状态
///
[XmlElement("status")]
public long Status { get; set; }
///
/// 更新信息
///
[XmlElement("update_desc")]
public string UpdateDesc { get; set; }
///
/// 版本号
///
[XmlElement("version_code")]
public long VersionCode { get; set; }
///
/// 版本名
///
[XmlElement("version_name")]
public string VersionName { get; set; }
}
}