19 lines
392 B
C#
19 lines
392 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayHighValueCustomerResult Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayHighValueCustomerResult : AopObject
|
|
{
|
|
/// <summary>
|
|
/// Z0-Z7
|
|
/// </summary>
|
|
[XmlElement("level")]
|
|
public string Level { get; set; }
|
|
}
|
|
}
|