Light12306/Web12306/Servers/TrainSuggestion/SuggestionResponse.cs

13 lines
251 B
C#
Raw Normal View History

2015-03-13 19:25:08 +08:00
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; }
}
}