29 lines
696 B
C#
29 lines
696 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|