elsa-core/src/modules/Elsa.Workflows.Management/Options/ManagementOptions.cs
2023-03-07 22:02:46 +01:00

19 lines
567 B
C#

using Elsa.Workflows.Management.Models;
namespace Elsa.Workflows.Management.Options;
/// <summary>
/// Options for the management module.
/// </summary>
public class ManagementOptions
{
/// <summary>
/// A collection of activity types that are available to the system.
/// </summary>
public HashSet<Type> ActivityTypes { get; set; } = new();
/// <summary>
/// A collection of types that are available to the system as variable types.
/// </summary>
public HashSet<VariableDescriptor> VariableDescriptors { get; set; } = new();
}