sharee.bike-App/TINKLib/Repository/Response/BikeInfoAvailable.cs

23 lines
579 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System.Runtime.Serialization;
2021-06-26 20:57:55 +02:00
namespace TINK.Repository.Response
2021-05-13 20:03:07 +02:00
{
[DataContract]
public class BikeInfoAvailable : BikeInfoBase
{
/// <summary>
/// Position of the bike.
/// </summary>
[DataMember]
2021-06-26 20:57:55 +02:00
public GpsInfo gps { get; private set; }
2021-05-13 20:03:07 +02:00
[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; }
}
}