using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TimePeriod Data Structure.
///
[Serializable]
public class TimePeriod : AopObject
{
///
/// 自提时段开始时间,如05:00
///
[XmlElement("begin_time")]
public string BeginTime { get; set; }
///
/// 自提时段结束时间,如23:30
///
[XmlElement("end_time")]
public string EndTime { get; set; }
}
}