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; }
|
|
|
}
|
}
|