lixiaojun
2024-10-23 1902e2c2332610fcaf310db19f98e7e9f819d0a6
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
namespace Yw.WinFrmUI.Bimface
{
    /// <summary>
    /// 业务标注引线标签
    /// </summary>
    public class LogicMarkLeadLabel
    {
        /// <summary>
        /// 
        /// </summary>
        public LogicMarkLeadLabel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public LogicMarkLeadLabel(string id, string text)
        {
            this.Id = id;
            this.Text = text;
        }
 
        /// <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; }
 
 
    }
}