mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
45 lines
1 KiB
C#
45 lines
1 KiB
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response.Stations.Station
|
|
{
|
|
/// <summary>
|
|
/// Holds info about a single station.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class StationInfo
|
|
{
|
|
/// <summary>
|
|
/// Unique id of the station.
|
|
/// </summary>
|
|
[DataMember]
|
|
public string station { get; private set; }
|
|
|
|
[DataMember]
|
|
public string[] station_group { get; private set; }
|
|
|
|
[DataMember]
|
|
public string description { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Position of the station.
|
|
/// </summary>
|
|
[DataMember]
|
|
public Position gps { get; private set; }
|
|
|
|
[DataMember]
|
|
public OperatorData operator_data { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Holds the count of available bikes at the station.
|
|
/// </summary>
|
|
[DataMember]
|
|
public string bike_count { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Holds the count type of station, i.e. which bikes are located at station.
|
|
/// </summary>
|
|
[DataMember]
|
|
public Dictionary<string, BikeGroup> station_type { get; private set; }
|
|
}
|
|
}
|