AlipayGotoneTodoSearchResponse.cs 665 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Aop.Api.Domain;
  5. namespace Aop.Api.Response
  6. {
  7. /// <summary>
  8. /// AlipayGotoneTodoSearchResponse.
  9. /// </summary>
  10. public class AlipayGotoneTodoSearchResponse : AopResponse
  11. {
  12. /// <summary>
  13. /// 返回查询到的待办事项
  14. /// </summary>
  15. [XmlArray("reminds")]
  16. [XmlArrayItem("todo_remind")]
  17. public List<TodoRemind> Reminds { get; set; }
  18. /// <summary>
  19. /// 查询到的todo消息数量
  20. /// </summary>
  21. [XmlElement("total_count")]
  22. public string TotalCount { get; set; }
  23. }
  24. }