2024-04-09 12:53:23 +02:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
using Newtonsoft.Json;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2024-04-09 12:53:23 +02:00
|
|
|
namespace ShareeBike.Repository.Response
|
2021-05-13 20:03:07 +02:00
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Holds the information about a booking request and is used for deserialization of copri answer.
|
|
|
|
/// </summary>
|
|
|
|
[DataContract]
|
2024-04-09 12:53:23 +02:00
|
|
|
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
|
2022-09-06 16:08:19 +02:00
|
|
|
public class ReservationBookingResponse : BikesReservedOccupiedResponse
|
|
|
|
{
|
|
|
|
/// <summary> Booking code for BC- bikes. </summary>
|
|
|
|
[DataMember]
|
|
|
|
public string timeCode { get; private set; }
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
}
|