18 lines
414 B
C#
18 lines
414 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenAppAppcontentFunctionCreateResponse.
|
|
/// </summary>
|
|
public class AlipayOpenAppAppcontentFunctionCreateResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 服务编码
|
|
/// </summary>
|
|
[XmlElement("service_code")]
|
|
public string ServiceCode { get; set; }
|
|
}
|
|
}
|