Add SelectList model

This commit is contained in:
Sipke Schoorstra 2022-11-28 22:06:27 +01:00
parent 7a8beaca66
commit dbbe9d080b

View file

@ -0,0 +1,3 @@
namespace Elsa.Workflows.Management.Models;
public record SelectList(ICollection<SelectListItem> Items);