diff --git a/src/clients/Elsa.Api.Client/Shared/UIHints/DropDown/SelectList.cs b/src/clients/Elsa.Api.Client/Shared/UIHints/DropDown/SelectList.cs index e2def9131..7f011139a 100644 --- a/src/clients/Elsa.Api.Client/Shared/UIHints/DropDown/SelectList.cs +++ b/src/clients/Elsa.Api.Client/Shared/UIHints/DropDown/SelectList.cs @@ -5,4 +5,5 @@ namespace Elsa.Api.Client.Shared.UIHints.DropDown; /// /// The items. /// Whether the select list represents a flags enum. -public record SelectList(ICollection Items, bool IsFlagsEnum = false); \ No newline at end of file +/// Whether to sort the items alphabetically otherwise will just use the order provided. +public record SelectList(ICollection Items, bool IsFlagsEnum = false, bool SortItems = true); \ No newline at end of file