using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TimeRange Data Structure.
///
[Serializable]
public class TimeRange : AopObject
{
///
/// 开始时间
///
[XmlElement("begin")]
public string Begin { get; set; }
///
/// 结束时间
///
[XmlElement("end")]
public string End { get; set; }
}
}