33 lines
823 B
C#
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;
|
|
}
|
|
}
|
|
} |