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

16 lines
370 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayInsSceneApplicationIssueConfirmResponse.
/// </summary>
public class AlipayInsSceneApplicationIssueConfirmResponse : AopResponse
{
/// <summary>
/// 投保订单号
/// </summary>
[JsonProperty("application_no")]
public string ApplicationNo { get; set; }
}
}