lixiaojun
2024-10-16 a757c77fc2300e4e52183438a98f34b7be03cf0d
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 LogicMarkLeadLabel
    {
        /// <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; }
 
 
    }
}