43 lines
1010 B
C#
43 lines
1010 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Szmedi.RevitToolkit.Approval.Models
|
|||
|
|
{
|
|||
|
|
public class SharedParameterBase
|
|||
|
|
{
|
|||
|
|
public string GUID { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 共享参数文件参数分组
|
|||
|
|
/// </summary>
|
|||
|
|
public string ParamGroup { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参数名
|
|||
|
|
/// </summary>
|
|||
|
|
public string ParamName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据类型
|
|||
|
|
/// </summary>
|
|||
|
|
public string DataType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 可见性
|
|||
|
|
/// </summary>
|
|||
|
|
public string Visiable { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户修改
|
|||
|
|
/// </summary>
|
|||
|
|
public string UserModifiable { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 没有值隐藏
|
|||
|
|
/// </summary>
|
|||
|
|
public string HideWhenNoValue { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|