BusStopListDsM.cs 357 Bytes
namespace MapsModels.DsModels
{
    public class BusStopListDsM
    {
        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; }
    }
}