mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
17 lines
422 B
C#
17 lines
422 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
/// <summary> Holds information about map area to display.</summary>
|
|
[DataContract]
|
|
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; }
|
|
}
|
|
}
|