mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
22 lines
579 B
C#
22 lines
579 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
[DataContract]
|
|
public class BikeInfoAvailable : BikeInfoBase
|
|
{
|
|
/// <summary>
|
|
/// Position of the bike.
|
|
/// </summary>
|
|
[DataMember]
|
|
public GpsInfo gps { get; private set; }
|
|
|
|
[DataMember]
|
|
/// <summary> Full advertisement name.</summary>
|
|
public string Ilockit_ID { get; private set; }
|
|
|
|
[DataMember]
|
|
/// <summary> Full advertisement name.</summary>
|
|
public string Ilockit_GUID { get; private set; }
|
|
}
|
|
}
|