using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayCommerceTransportVehicleownerMessageSendResponse. /// public class AlipayCommerceTransportVehicleownerMessageSendResponse : AopResponse { /// /// 批量发送结果 /// [XmlArray("send_result_list")] [XmlArrayItem("vehicle_msg_send_result_entity")] public List SendResultList { get; set; } } }