NewGaoKaoApi/PaymentSDK/AliPay/Domain/BookTime.cs

27 lines
692 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>
/// BookTime Data Structure.
/// </summary>
[Serializable]
public class BookTime : AopObject
{
/// <summary>
/// 可预定时间段。格式: HH:mm:ss
/// </summary>
[XmlArray("time")]
[XmlArrayItem("string")]
public List<string> Time { get; set; }
/// <summary>
/// 可预订周几。如1表示周一2周二3周三4周四5周五6周六7周日
/// </summary>
[XmlElement("week")]
public long Week { get; set; }
}
}