18 lines
424 B
C#
18 lines
424 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayMarketingCardBenefitDeleteResponse.
|
||
/// </summary>
|
||
public class AlipayMarketingCardBenefitDeleteResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 权益删除结果;true成功,false失败
|
||
/// </summary>
|
||
[XmlElement("result")]
|
||
public bool Result { get; set; }
|
||
}
|
||
}
|