using System.Collections.Generic;
using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
///
/// Holds the information about all bikes and is used for deserialization of copri answer.
///
[DataContract]
public class BikesAvailableResponse : ResponseBase
{
///
/// Dictionary of bikes.
///
[DataMember]
public Dictionary bikes { get; private set; }
}
}