18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserAlipaypointSendResponse.
|
|
/// </summary>
|
|
public class AlipayUserAlipaypointSendResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 发放记录号
|
|
/// </summary>
|
|
[XmlElement("record_id")]
|
|
public string RecordId { get; set; }
|
|
}
|
|
}
|