18 lines
413 B
C#
18 lines
413 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenMiniTinyappExistQueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenMiniTinyappExistQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 是否是小程序开发者
|
|
/// </summary>
|
|
[XmlElement("exist_mini")]
|
|
public string ExistMini { get; set; }
|
|
}
|
|
}
|