mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
18 lines
473 B
C#
18 lines
473 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; }
|
|||
|
}
|
|||
|
}
|