using System.Collections.Generic;
using System.Runtime.Serialization;
using TINK.Repository.Response.Stations.Station;
namespace TINK.Repository.Response.Stations
{
///
/// Holds the information about all stations and is used for deserialization of copri answer.
///
[DataContract]
public class StationsAvailableResponse : ResponseBase
{
///
/// Dictionary of bikes.
///
[DataMember]
public Dictionary stations { get; private set; }
///
/// Dictionary of bikes reserved (requested) and rented (occupied) by current user if user is logged in and has reserved or rented bikes.
///
[DataMember]
public Dictionary bikes_occupied { get; private set; }
}
}