namespace Yw.WinFrmUI.Bimface
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class LogicCalcuCustomLabelItem
|
{
|
/// <summary>
|
/// 名称
|
/// </summary>
|
[JsonProperty("name", NullValueHandling = NullValueHandling.Ignore)]
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 值
|
/// </summary>
|
[JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)]
|
public string Value { get; set; }
|
|
/// <summary>
|
/// 单位
|
/// </summary>
|
[JsonProperty("unit", NullValueHandling = NullValueHandling.Ignore)]
|
public string Unit { get; set; }
|
}
|
}
|