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