using System.Collections.Generic; 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. Position Position { get; } } }