JushitaJdpTasksGetResponse.cs 503 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// JushitaJdpTasksGetResponse.
  8. /// </summary>
  9. public class JushitaJdpTasksGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 查询到的未执行任务
  13. /// </summary>
  14. [XmlArray("data_push_tasks")]
  15. [XmlArrayItem("data_push_task")]
  16. public List<Top.Api.Domain.DataPushTask> DataPushTasks { get; set; }
  17. }
  18. }