using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// ZhimaCustomerBehaviorSyncResponse. /// public class ZhimaCustomerBehaviorSyncResponse : AopResponse { /// /// 行为合约号 /// [XmlElement("contract_no")] public string ContractNo { get; set; } /// /// 行为所触发的合约号 /// [XmlArray("contract_nos")] [XmlArrayItem("string")] public List ContractNos { get; set; } } }