Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozAuthenticationCustomerSmilepayInitializeResponse.cs

18 lines
427 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozAuthenticationCustomerSmilepayInitializeResponse.
/// </summary>
public class ZolozAuthenticationCustomerSmilepayInitializeResponse : AopResponse
{
/// <summary>
/// 返回值
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
}
}