接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ForbbidenTime Data Structure.
/// </summary>
[Serializable]
public class ForbbidenTime : AopObject
{
/// <summary>
/// 不可用日期区间,仅支持到天 不可用区间起止日期用逗号分隔,多个区间之间用^分隔
/// 如"2016-05-01,2016-05-03^2016-10-01,2016-10-07"表示2016年5月1日至5月3日10月1日至10月7日券不可用
/// </summary>
[JsonProperty("days")]
public string Days { get; set; }
}
}