using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace IStation.Bimface
|
{
|
/// <summary>
|
/// 通用属性
|
/// </summary>
|
public class CommonProperty
|
{
|
public string code { get; set; }
|
public object extension { get; set; }
|
public string key { get; set; }
|
public int? orderNumber { get; set; }
|
public string value { get; set; }
|
public string unit { get; set; }
|
public int valueType { get; set; }
|
|
}
|
}
|