using System.Collections.Generic;
using TINK.Model.Station.Operator;
namespace TINK.Model.Station
{
/// Holds object representing null station.
public class NullStation : IStation
{
/// Holds the unique id of the station.c
public string Id => null;
/// Holds the group to which the station belongs.
public IEnumerable Group => new List();
/// Gets the name of the station.
public string StationName => string.Empty;
/// Holds the gps- position of the station.
public IPosition Position => PositionFactory.Create();
/// Holds operator related data.
public IData OperatorData => new Data();
}
}