using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// InvokeAppInfo Data Structure. /// [Serializable] public class InvokeAppInfo : AopObject { /// /// 调用应用id /// [XmlElement("invoke_app_id")] public string InvokeAppId { get; set; } /// /// 调用应用logo /// [XmlElement("invoke_app_logo")] public string InvokeAppLogo { get; set; } /// /// 调用应用名称 /// [XmlElement("invoke_app_name")] public string InvokeAppName { get; set; } /// /// 设备产品列表信息 /// [XmlArray("related_product_list")] [XmlArrayItem("device_product_info")] public List RelatedProductList { get; set; } } }