sharee.bike-App/TINKLib/Model/Station/NullStation.cs

25 lines
833 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System.Collections.Generic;
using TINK.Model.Station.Operator;
2021-05-13 20:03:07 +02:00
namespace TINK.Model.Station
{
/// <summary> Holds object representing null station.</summary>
public class NullStation : IStation
{
/// <summary> Holds the unique id of the station.c</summary>
2021-06-26 20:57:55 +02:00
public string Id => null;
2021-05-13 20:03:07 +02:00
/// <summary> Holds the group to which the station belongs.</summary>
public IEnumerable<string> Group => new List<string>();
/// <summary> Gets the name of the station.</summary>
public string StationName => string.Empty;
/// <summary> Holds the gps- position of the station.</summary>
2022-01-22 18:16:10 +01:00
public IPosition Position => PositionFactory.Create();
/// <summary> Holds operator related data.</summary>
public IData OperatorData => new Data();
2021-05-13 20:03:07 +02:00
}
}