mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-01-07 05:34:31 +01:00
21 lines
491 B
C#
21 lines
491 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace ShareeBike.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; }
|
|
}
|
|
}
|