添加项目文件。

This commit is contained in:
GG Z
2024-01-08 09:30:50 +08:00
commit 1ccc4b3047
85 changed files with 5904 additions and 0 deletions

View 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; }
}
}