32912d0b
Administrator
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace MapsModels.DsModels
{
public class BusStopListDs
{
public string Road { get; set; }
public string Region { get; set; }
public string Settlement { get; set; }
public double? LocationLeft { get; set; }
public double? LocationRight { get; set; }
public string StateCommon { get; set; }
}
}
|