using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// BoothContentInfoModel Data Structure. /// [Serializable] public class BoothContentInfoModel : AopObject { /// /// 展台名称 /// [XmlElement("booth")] public string Booth { get; set; } /// /// 内容信息列表 /// [XmlArray("content_info_list")] [XmlArrayItem("content_info_model")] public List ContentInfoList { get; set; } } }