初始提交
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// UnavailablePeriodInfo Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class UnavailablePeriodInfo : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 商品不可用时段结束日期。格式为YYYY-MM-DD,如2017-05-03
|
||||
/// </summary>
|
||||
[JsonProperty("end_day")]
|
||||
public string EndDay { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商品不可用时段开始日期。格式为YYYY-MM-DD,如2017-05-01
|
||||
/// </summary>
|
||||
[JsonProperty("start_day")]
|
||||
public string StartDay { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user