mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
15 lines
386 B
C#
15 lines
386 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace TINK.Model.Repository.Response
|
|||
|
{
|
|||
|
public class BikesReservedOccupiedResponse : ResponseBase
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Dictionary of bikes.
|
|||
|
/// </summary>
|
|||
|
[DataMember]
|
|||
|
public Dictionary<int, BikeInfoReservedOrBooked> bikes_occupied { get; private set; }
|
|||
|
}
|
|||
|
}
|