using System.Collections.Generic;
using TINK.Model.Station.Operator;
namespace TINK.Model.Station
{
public interface IStation
{
/// Holds the unique id of the station.c
string Id { get; }
/// Holds the group to which the station belongs.
IEnumerable Group { get; }
/// Gets the name of the station.
string StationName { get; }
/// Holds the gps- position of the station.
IPosition Position { get; }
/// Holds operator related data.
IData OperatorData { get; }
}
}