27 lines
611 B
C#
27 lines
611 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenTestQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenTestQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
[XmlElement("user_name")]
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户类型
|
|
/// </summary>
|
|
[XmlArray("user_type")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> UserType { get; set; }
|
|
}
|
|
}
|