using System.Runtime.Serialization; namespace TINK.Repository.Response.Stations.Station { /// /// Holds a single bike group. /// [DataContract] public class BikeGroup { /// Holds the count of bikes for the group. [DataMember] public string bike_count { get; private set;} /// /// Holds the group identifying the bike group type. /// [DataMember] public string bike_group { get; private set; } } }