using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoCplifeNoticePublishModel Data Structure. /// [Serializable] public class AlipayEcoCplifeNoticePublishModel : AopObject { /// /// 待发布通知的目标物业小区ID列表,使用支付宝平台统一的小区ID编码。 /// [XmlArray("community_id_set")] [XmlArrayItem("string")] public List CommunityIdSet { get; set; } /// /// 待发送的通知内容 /// [XmlElement("notice_details")] public CplifeNoticeDetail NoticeDetails { get; set; } } }