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