mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
20 lines
698 B
C#
20 lines
698 B
C#
using System.Collections.Generic;
|
|
|
|
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>
|
|
public string Id => null;
|
|
|
|
/// <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>
|
|
public Position Position => new Position(double.NaN, double.NaN);
|
|
}
|
|
}
|