using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayGotoneTodoSearchResponse.
///
public class AlipayGotoneTodoSearchResponse : AopResponse
{
///
/// 返回查询到的待办事项
///
[XmlArray("reminds")]
[XmlArrayItem("todo_remind")]
public List Reminds { get; set; }
///
/// 查询到的todo消息数量
///
[XmlElement("total_count")]
public string TotalCount { get; set; }
}
}