sharee.bike-App/TINKLib/Repository/Response/MapSpan.cs

18 lines
422 B
C#
Raw Normal View History

2022-01-22 18:16:10 +01:00
using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
2022-09-06 16:08:19 +02:00
/// <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; }
2022-01-22 18:16:10 +01:00
2022-09-06 16:08:19 +02:00
/// <summary> Radius to the map area. </summary>
[DataMember]
public string radius { get; private set; }
}
2022-01-22 18:16:10 +01:00
}