mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
19 lines
512 B
C#
19 lines
512 B
C#
using System.Runtime.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ShareeBike.Repository.Response
|
|
{
|
|
/// <summary> Holds information about map area to display.</summary>
|
|
[DataContract]
|
|
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
|
|
public class MapSpan
|
|
{
|
|
/// <summary> Center position of the map. </summary>
|
|
[DataMember]
|
|
public Position center { get; private set; }
|
|
|
|
/// <summary> Radius to the map area. </summary>
|
|
[DataMember]
|
|
public string radius { get; private set; }
|
|
}
|
|
}
|