using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Repair
{
///
/// 定位
///
public class Location : JsonList
{
///
///
///
public Location() { }
///
///
///
public Location(Location rhs)
{
this.Kind = rhs.Kind;
this.Position = rhs.Position == null ? null : new Marker(rhs.Position);
}
///
/// 地图种类
///
public string Kind { get; set; }
///
/// 位置
///
public Marker Position { get; set; }
}
}