using Elsa.Workflows; using Elsa.Workflows.Attributes; using Elsa.Workflows.Models; using Elsa.Workflows.UIHints; namespace Elsa.Samples.AspNet.CustomUIHandler; /// /// A sample activity that let's you select a car brand. /// public class VehicleActivity : Activity { [Input( Description = "The content type to use when sending the request.", UIHint = InputUIHints.DropDown, UIHandlers = [typeof(VehicleUIHandler), typeof(RefreshUIHandler)] )] public Input Brand { get; set; } = default!; }