using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Map
{
///
/// 点标记
///
public class Marker : JsonModel
{
///
///
///
public Marker() { }
///
///
///
public Marker(Marker rhs)
{
this.Point = new Point(rhs.Point);
this.Address = rhs.Address;
}
///
/// 点信息
///
public Point Point { get; set; }
///
/// 地址
///
public string Address { get; set; }
}
}