using System.Collections.Generic; using System.Runtime.Serialization; namespace TINK.Repository.Response.Stations.Station { /// /// Holds info about a single station. /// [DataContract] public class StationInfo { /// /// Unique id of the station. /// [DataMember] public string station { get; private set; } [DataMember] public string[] station_group { get; private set; } [DataMember] public string description { get; private set; } /// /// Position of the station. /// [DataMember] public Position gps { get; private set; } [DataMember] public OperatorData operator_data { get; private set; } /// /// Holds the count of available bikes at the station. /// [DataMember] public string bike_count { get; private set; } /// /// Holds the count type of station, i.e. which bikes are located at station. /// [DataMember] public Dictionary station_type { get; private set; } } }