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