using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipaySocialForestTreeQueryModel Data Structure.
///
[Serializable]
public class AlipaySocialForestTreeQueryModel : AopObject
{
///
/// 种树截止时间
///
[XmlElement("end_date")]
public string EndDate { get; set; }
///
/// 种树开始时间
///
[XmlElement("start_date")]
public string StartDate { get; set; }
///
/// 蚂蚁统一会员ID。目前该参数服务端没有用
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}