using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// PoiSyncData Data Structure. /// [Serializable] public class PoiSyncData : AopObject { /// /// 小程序appId /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// poi的id /// [XmlArray("poi_codes")] [XmlArrayItem("string")] public List PoiCodes { get; set; } /// /// 12 /// [XmlElement("type")] public string Type { get; set; } } }