using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// MobileAppInfo Data Structure. /// [Serializable] public class MobileAppInfo : AopObject { /// /// 移动应用绑定小程序数量 /// [XmlElement("bind_mini_app_count")] public long BindMiniAppCount { get; set; } /// /// 移动应用id /// [XmlElement("mobile_app_id")] public string MobileAppId { get; set; } /// /// 移动应用名称 /// [XmlElement("mobile_app_name")] public string MobileAppName { get; set; } /// /// 移动应用签名 /// [XmlElement("mobile_app_sign")] public string MobileAppSign { get; set; } /// /// 设备产品信息列表 /// [XmlArray("related_product_list")] [XmlArrayItem("device_product_info")] public List RelatedProductList { get; set; } } }