namespace MapsModels.DsModels { public class BusStopDetailsDsM { public int BusStopId { get; set; } 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 SurfaceType { get; set; } public int? AreaStopAvailability { get; set; } public int? AreaLandAvailability { get; set; } public int? PocketAvailability { get; set; } public int? ToiletAvailability { get; set; } public int? YearBuild { get; set; } public int? YearRepair { get; set; } public string StateCommon { get; set; } } }