Shuxia Ning
2024-10-29 edfb5be5dc9037152975bd4354e95d5eff78ce2d
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
42
43
namespace Yw.WinFrmUI.Bimface
{
    /// <summary>
    /// 业务标注引线标签
    /// </summary>
    public class LogicMarkLeadLabel
    {
        /// <summary>
        /// 
        /// </summary>
        public LogicMarkLeadLabel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public LogicMarkLeadLabel(string id, string text, int distance)
        {
            this.Id = id;
            this.Text = text;
            this.Distance = distance;
        }
 
        /// <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; }
 
        /// <summary>
        /// 可见距离
        /// </summary>
        [JsonProperty("distance", NullValueHandling = NullValueHandling.Ignore)]
        public int Distance { get; set; }
 
 
    }
}