Class SelectOption
- Namespace
- Whim.CommandPalette
- Assembly
- Whim.CommandPalette.dll
Represents an option of a SelectVariantConfig
public record SelectOption : IEquatable<SelectOption>
- Inheritance
-
SelectOption
- Implements
- Inherited Members
Properties
Id
The unique identifier of this option.
public required string Id { get; set; }
Property Value
IsEnabled
Whether this option is enabled.
public bool IsEnabled { get; set; }
Property Value
IsSelected
Whether this option is selected.
public bool IsSelected { get; set; }
Property Value
Title
The title to display for this option.
public required string Title { get; set; }