添加项目文件。
This commit is contained in:
42
Szmedi.RevitToolkit.Approval/Models/SharedParameterBase.cs
Normal file
42
Szmedi.RevitToolkit.Approval/Models/SharedParameterBase.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user