MapContent.cs
914 Bytes
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
33
34
35
36
37
38
39
40
41
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 地图内容
/// </summary>
public partial class MapContent
{
public MapContent()
{
}
/// <summary>
/// 地图名称
/// </summary>
public string Title { get; set; }
/// <summary>
/// 节点
/// </summary>
public Node[] Nodes { get; set; }
/// <summary>
/// 线条
/// </summary>
public dynamic Lines { get; set; }
/// <summary>
/// 区域
/// </summary>
public Area[] Areas { get; set; }
/// <summary>
/// 限行区
/// </summary>
public Region[] Regions { get; set; }
/// <summary>
/// 初始化序号
/// </summary>
public int? InitNum { get; set; }
}
}