Light12306/Web12306/Servers/TrainSuggestion/AlternativeLineGroup.cs

33 lines
823 B
C#
Raw Normal View History

2015-03-13 19:25:08 +08:00
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>
/// <20><><EFBFBD><EFBFBD> <see cref="AlternativeLineGroup" /> <20><><EFBFBD><EFBFBD>ʵ<EFBFBD><CAB5>(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;
}
}
}