using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppIndustryAntforestEventSendModel Data Structure.
///
[Serializable]
public class AlipayEbppIndustryAntforestEventSendModel : AopObject
{
///
/// 用于标识行业-蚂蚁森林能量事件的类别
///
[XmlElement("type")]
public string Type { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}