using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayMerchantOrderPointQueryModel Data Structure.
///
[Serializable]
public class AlipayMerchantOrderPointQueryModel : AopObject
{
///
/// 需要查询的积分类型,如家庭积分、会员积分、返佣积分等等
///
[XmlElement("point_type")]
public string PointType { get; set; }
///
/// 用户身份
///
[XmlElement("user")]
public UserIdentity User { get; set; }
}
}