Table of Contents

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

string

IsEnabled

Whether this option is enabled.
public bool IsEnabled { get; set; }

Property Value

bool

IsSelected

Whether this option is selected.
public bool IsSelected { get; set; }

Property Value

bool

Title

The title to display for this option.
public required string Title { get; set; }

Property Value

string