1234567891011121314151617181920 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEvercallAlertAddResponse : AopResponse
- {
-
-
-
- [XmlArray("alert_results")]
- [XmlArrayItem("evercall_alert_result")]
- public List<EvercallAlertResult> AlertResults { get; set; }
- }
- }
|