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 PossibleValues { get; set; } = new List(); public object DefaultValue { get; set; } public double Min { get; set; } public double Max { get; set; } public double Step { get; set; } } }