添加项目文件。
This commit is contained in:
26
KGdev.BI3D.Revit.Common/IOptionDefinition.cs
Normal file
26
KGdev.BI3D.Revit.Common/IOptionDefinition.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace KGdev.BI3D.Revit.Common
|
||||
{
|
||||
public interface IOptionDefinition
|
||||
{
|
||||
string Id { get; }
|
||||
|
||||
string Label { get; }
|
||||
|
||||
string Description { get; }
|
||||
|
||||
OptionValueType OptionValueType { get; }
|
||||
|
||||
List<ISelectOptionDefinitionValue> PossibleValues { get; }
|
||||
|
||||
object DefaultValue { get; }
|
||||
|
||||
double Min { get; }
|
||||
|
||||
double Max { get; }
|
||||
|
||||
double Step { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user