Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayBossProdArrangementOfflineQueryResponse.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>
/// AlipayBossProdArrangementOfflineQueryResponse.
/// </summary>
public class AlipayBossProdArrangementOfflineQueryResponse : AopResponse
{
/// <summary>
/// 商户的签约状态
/// </summary>
[JsonProperty("sign_status")]
public string SignStatus { get; set; }
}
}