Class Station
A railway station with its identification, location, and available services.
public class Station
- Inheritance
-
Station
- Inherited Members
Constructors
Station()
public Station()
Properties
Address
Mailing address of the station.
public StationAddress? Address { get; init; }
Property Value
Category
Station category indicating its importance and size.
public required StationCategory Category { get; init; }
Property Value
Coordinates
Primary geographic coordinates of the station.
public Coordinates? Coordinates { get; }
Property Value
- Coordinates
EvaNumbers
EVA numbers for the station.
public IEnumerable<EvaNumber> EvaNumbers { get; init; }
Property Value
Name
Official name of the station.
public required string Name { get; init; }
Property Value
Number
Unique station number assigned by DB Station & Service.
public required int Number { get; init; }
Property Value
PrimaryEva
Primary EVA number for the station.
public EvaNumber? PrimaryEva { get; }
Property Value
PrimaryRil100
Primary RIL 100 identifier for the station.
public Ril100Identifier? PrimaryRil100 { get; }
Property Value
RegionalArea
Regional area of Deutsche Bahn responsible for the station.
public RegionalArea? RegionalArea { get; init; }
Property Value
Ril100Identifiers
RIL 100 identifiers for the station.
public IEnumerable<Ril100Identifier> Ril100Identifiers { get; init; }
Property Value
Services
Available services and facilities at the station.
public required StationServices Services { get; init; }