using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PeriodInfo Data Structure.
///
[Serializable]
public class PeriodInfo : AopObject
{
///
/// 单位
///
[JsonProperty("dimension")]
public string Dimension { get; set; }
///
/// 周期值
///
[JsonProperty("value")]
public long Value { get; set; }
}
}