Light12306/Web12306/Servers/TrainSuggestion/AlternativeLineGroup.cs
2015-03-13 19:25:08 +08:00

33 lines
823 B
C#

namespace Web12306.Servers.TrainSuggestion
{
using System.Collections.Generic;
public class AlternativeLineGroup
{
public string FromText { get; set; }
public string ToText { get; set; }
public string Date { get; set; }
public List<AlternativeLine> Lines { get; set; }
public bool IsCrossDate { get; set; }
/// <summary>
/// ´´½¨ <see cref="AlternativeLineGroup" /> µÄÐÂʵÀý(AlternativeLineGroup)
/// </summary>
/// <param name="fromText"></param>
/// <param name="toText"></param>
/// <param name="date"></param>
/// <param name="lines"></param>
public AlternativeLineGroup(string fromText, string toText, string date, List<AlternativeLine> lines, bool isCrossDate)
{
FromText = fromText;
ToText = toText;
Date = date;
Lines = lines;
IsCrossDate = isCrossDate;
}
}
}