using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoTextDetectModel Data Structure. /// [Serializable] public class AlipayEcoTextDetectModel : AopObject { /// /// 检测任务列表 /// [XmlArray("task")] [XmlArrayItem("spi_detection_task")] public List Task { get; set; } } }