Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ForbbidenTime.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

19 lines
554 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}