Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/OpenPromoPrizeRelativeTime.cs

24 lines
584 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// OpenPromoPrizeRelativeTime Data Structure.
/// </summary>
[Serializable]
public class OpenPromoPrizeRelativeTime : AopObject
{
/// <summary>
/// 时间维度, MI表示 分 H表示 时 D表示 日 W表示 周 M表示 月
/// </summary>
[JsonProperty("dimension")]
public string Dimension { get; set; }
/// <summary>
/// 相对值
/// </summary>
[JsonProperty("value")]
public string Value { get; set; }
}
}