1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| namespace Yw.WinFrmUI.Bimface
| {
| /// <summary>
| /// 引线标签
| /// </summary>
| public class LeadLabel
| {
| /// <summary>
| /// id
| /// </summary>
| [JsonProperty("id", NullValueHandling = NullValueHandling.Ignore)]
| public string Id { get; set; }
|
| /// <summary>
| /// 文本
| /// </summary>
| [JsonProperty("text", NullValueHandling = NullValueHandling.Ignore)]
| public string Text { get; set; }
|
|
| }
| }
|
|