mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
22 lines
485 B
C#
22 lines
485 B
C#
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace TINK.Repository.Response.Stations.Station
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Holds a single bike group.
|
||
|
/// </summary>
|
||
|
[DataContract]
|
||
|
public class BikeGroup
|
||
|
{
|
||
|
/// <summary> Holds the count of bikes for the group. </summary>
|
||
|
[DataMember]
|
||
|
public string bike_count { get; private set;}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Holds the group identifying the bike group type.
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string bike_group { get; private set; }
|
||
|
}
|
||
|
}
|