13 lines
251 B
C#
13 lines
251 B
C#
|
namespace Web12306.Servers.TrainSuggestion
|
||
|
{
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class SuggestionResponse
|
||
|
{
|
||
|
public bool Accepted { get; set; }
|
||
|
|
||
|
public string Key { get; set; }
|
||
|
|
||
|
public List<AlternativeLineGroup> Groups { get; set; }
|
||
|
}
|
||
|
}
|