using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// JushitaJdpTasksGetResponse. /// public class JushitaJdpTasksGetResponse : TopResponse { /// /// 查询到的未执行任务 /// [XmlArray("data_push_tasks")] [XmlArrayItem("data_push_task")] public List DataPushTasks { get; set; } } }