using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TodoRemind Data Structure.
///
[Serializable]
public class TodoRemind : AopObject
{
///
/// 所属产品、即消息标签。如付款、代付
///
[XmlElement("business_type")]
public string BusinessType { get; set; }
///
/// 消息id
///
[XmlElement("id")]
public string Id { get; set; }
///
/// 消息标题
///
[XmlElement("title")]
public string Title { get; set; }
///
/// 支付宝账号
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}