using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RecruitShopInfo Data Structure. /// [Serializable] public class RecruitShopInfo : AopObject { /// /// 已确认还是未确认 /// [XmlElement("confirm_status")] public string ConfirmStatus { get; set; } /// /// 一级和二级类目名称 /// [XmlElement("shop_category")] public string ShopCategory { get; set; } /// /// 店铺id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺名称 /// [XmlElement("shop_name")] public string ShopName { get; set; } } }