18 lines
372 B
C#
18 lines
372 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenTestQueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenTestQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 用户类型
|
|
/// </summary>
|
|
[XmlElement("user_type")]
|
|
public string UserType { get; set; }
|
|
}
|
|
}
|