mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
23 lines
539 B
C#
23 lines
539 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
/// <summary>
|
|
/// Holds info about a single bike.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class GpsInfo
|
|
{
|
|
/// <summary>
|
|
/// Latitude position of the bike.
|
|
/// </summary>
|
|
[DataMember]
|
|
public string latitude { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Longitude position of the bike.
|
|
/// </summary>
|
|
[DataMember]
|
|
public string longitude { get; private set; }
|
|
}
|
|
}
|