初始提交
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user