mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
19 lines
542 B
C#
19 lines
542 B
C#
using System.Runtime.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ShareeBike.Repository.Response
|
|
{
|
|
/// <summary> Holds position info. </summary>
|
|
[DataContract]
|
|
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
|
|
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; }
|
|
}
|
|
}
|