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