using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InputScheduleTime Data Structure.
///
[Serializable]
public class InputScheduleTime : AopObject
{
///
/// 车容量
///
[XmlElement("capacity")]
public long Capacity { get; set; }
///
/// 方向,参考方向枚举
///
[XmlElement("direction")]
public string Direction { get; set; }
///
/// 预设车次数
///
[XmlElement("exp_trip_cnt")]
public long ExpTripCnt { get; set; }
///
/// 拓展参数
///
[XmlElement("ext_param")]
public string ExtParam { get; set; }
///
/// 线路id
///
[XmlElement("line_id")]
public string LineId { get; set; }
}
}