1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| namespace Yw.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; }
| }
| }
|
|