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