NewGaoKaoApi/PaymentSDK/AliPay/Domain/OpenPromoPrizeDimension.cs

27 lines
686 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// OpenPromoPrizeDimension Data Structure.
/// </summary>
[Serializable]
public class OpenPromoPrizeDimension : AopObject
{
/// <summary>
/// 时间维度, W表示 周[1,4,5] MIOD表示 每天X分钟[0,1439]
/// </summary>
[XmlElement("dimension")]
public string Dimension { get; set; }
/// <summary>
/// 参考dimension 后面的值
/// </summary>
[XmlArray("values")]
[XmlArrayItem("number")]
public List<long> Values { get; set; }
}
}