using System.Collections.Generic; using System.Runtime.Serialization; namespace TINK.Repository.Response { public class BikesReservedOccupiedResponse : ResponseBase { /// /// Dictionary of bikes. /// [DataMember] public Dictionary bikes_occupied { get; private set; } } }