using System.Reflection;
using Elsa.Workflows;
using Elsa.Workflows.UIHints;
using Elsa.Workflows.UIHints.Dropdown;
namespace Elsa.Connections.UIHints;
public class ConnexionDropDownUIHintHandler : IUIHintHandler
{
///
public string UIHint => $"connexion-{InputUIHints.DropDown}";
///
public ValueTask> GetPropertyUIHandlersAsync(PropertyInfo propertyInfo, CancellationToken cancellationToken)
{
return new(new[] { typeof(StaticDropDownOptionsProvider) });
}
}