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