mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 15:16:34 +01:00
33 lines
1,010 B
C#
33 lines
1,010 B
C#
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace TINK.Model.Repository.Response
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class BikeInfoReservedOrBooked : BikeInfoAvailable
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Date from when bike was reserved from/ booked from.
|
|||
|
/// Format: 2017-11-28 11:01:51.637747+01
|
|||
|
/// </summary>
|
|||
|
[DataMember]
|
|||
|
public string start_time { get; private set; }
|
|||
|
|
|||
|
/// <summary> Booking code if bike is BC-bike.</summary>
|
|||
|
[DataMember]
|
|||
|
public string timeCode { get; private set; }
|
|||
|
|
|||
|
[DataMember]
|
|||
|
/// <summary> Seed used to generate key for connecting to bluetooth lock.</summary>
|
|||
|
public string K_seed { get; private set; }
|
|||
|
|
|||
|
[DataMember]
|
|||
|
/// <summary> Key for connect to bluetooth lock as user.</summary>
|
|||
|
public string K_u { get; private set; }
|
|||
|
|
|||
|
[DataMember]
|
|||
|
/// <summary> Key for connect to bluetooth lock as admin.</summary>
|
|||
|
public string K_a { get; private set;}
|
|||
|
|
|||
|
}
|
|||
|
}
|