using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
/// Holds information about map area to display.
[DataContract]
public class MapSpan
{
/// Center position of the map.
[DataMember]
public Position center { get; private set; }
/// Radius to the map area.
[DataMember]
public string radius { get; private set; }
}
}