mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
33 lines
672 B
C#
33 lines
672 B
C#
|
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; }
|
||
|
}
|
||
|
}
|