namespace Yw.WinFrmUI.Bimface { /// /// 业务标注引线标签 /// public class LogicMarkLeadLabel { /// /// /// public LogicMarkLeadLabel() { } /// /// /// public LogicMarkLeadLabel(string id, string text, int distance) { this.Id = id; this.Text = text; this.Distance = distance; } /// /// id /// [JsonProperty("id", NullValueHandling = NullValueHandling.Ignore)] public string Id { get; set; } /// /// 文本 /// [JsonProperty("text", NullValueHandling = NullValueHandling.Ignore)] public string Text { get; set; } /// /// 可见距离 /// [JsonProperty("distance", NullValueHandling = NullValueHandling.Ignore)] public int Distance { get; set; } } }