sharee.bike-App/TINKLib/Model/Station/IStation.cs
Oliver Hauff f38b516d25 3.0.271
2022-01-22 18:16:10 +01:00

24 lines
672 B
C#

using System.Collections.Generic;
using TINK.Model.Station.Operator;
namespace TINK.Model.Station
{
public interface IStation
{
/// <summary> Holds the unique id of the station.c</summary>
string 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>
IPosition Position { get; }
/// <summary> Holds operator related data.</summary>
IData OperatorData { get; }
}
}