mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-12 13:36:26 +01:00
20 lines
535 B
C#
20 lines
535 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace TINK.Model.Station
|
|||
|
{
|
|||
|
public interface IStation
|
|||
|
{
|
|||
|
/// <summary> Holds the unique id of the station.c</summary>
|
|||
|
int Id { get; }
|
|||
|
|
|||
|
/// <summary> Holds the group to which the station belongs.</summary>
|
|||
|
IEnumerable<string> Group { get; }
|
|||
|
|
|||
|
/// <summary> Gets the name of the station.</summary>
|
|||
|
string StationName { get; }
|
|||
|
|
|||
|
/// <summary> Holds the gps- position of the station.</summary>
|
|||
|
Position Position { get; }
|
|||
|
}
|
|||
|
}
|