19 lines
431 B
C#
19 lines
431 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MemberAssetModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MemberAssetModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 权益类型,目前只支持2种。 BALANCE:金额 POINT:积分
|
||
/// </summary>
|
||
[XmlElement("type")]
|
||
public string Type { get; set; }
|
||
}
|
||
}
|