mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
18 lines
512 B
C#
18 lines
512 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
/// <summary>
|
|
/// Holds the information about all bikes and is used for deserialization of copri answer.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class BikesAvailableResponse : ResponseBase
|
|
{
|
|
/// <summary>
|
|
/// Dictionary of bikes.
|
|
/// </summary>
|
|
[DataMember]
|
|
public Dictionary<string, BikeInfoAvailable> bikes { get; private set; }
|
|
}
|
|
}
|