Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayOpenPublicLifeAgentcreateQueryModel.cs

18 lines
427 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicLifeAgentcreateQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicLifeAgentcreateQueryModel : AopObject
{
/// <summary>
/// 由开发者创建的外部入驻申请单据号
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
}
}