mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
17 lines
452 B
C#
17 lines
452 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
/// <summary> Holds position info. </summary>
|
|
[DataContract]
|
|
public class Position
|
|
{
|
|
/// <summary> Latitude position (bike, station, map center...). </summary>
|
|
[DataMember]
|
|
public string latitude { get; private set; }
|
|
|
|
/// <summary> Longitude position (bike, station, map center...). </summary>
|
|
[DataMember]
|
|
public string longitude { get; private set; }
|
|
}
|
|
}
|