using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// MiniAppFirstCategoryInfo Data Structure. /// [Serializable] public class MiniAppFirstCategoryInfo : AopObject { /// /// 旅行住宿 /// [XmlElement("category_id")] public string CategoryId { get; set; } /// /// 小程序类目名称 /// [XmlElement("category_name")] public string CategoryName { get; set; } /// /// 二级类目列表 /// [XmlArray("child_category")] [XmlArrayItem("mini_app_second_category_info")] public List ChildCategory { get; set; } } }