21 lines
522 B
C#
21 lines
522 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenAppMembersQueryResponse.
|
|
/// </summary>
|
|
public class AlipayOpenAppMembersQueryResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 小程序成员模型
|
|
/// </summary>
|
|
[XmlArray("app_member_info_list")]
|
|
[XmlArrayItem("app_member_info")]
|
|
public List<AppMemberInfo> AppMemberInfoList { get; set; }
|
|
}
|
|
}
|