elsa-core/src/clients/Elsa.Client/Models/ActivityDefinition.cs
2020-11-12 23:45:18 +01:00

17 lines
674 B
C#

namespace Elsa.Client.Models
{
public class ActivityDefinition
{
public string ActivityId { get; set; } = default!;
public string Type { get; set; } = default!;
public string? Name { get; set; }
public string? DisplayName { get; set; }
public string? Description { get; set; }
public int? Left { get; set; }
public int? Top { get; set; }
public bool PersistWorkflow { get; set; }
public bool LoadWorkflowContext { get; set; }
public bool SaveWorkflowContext { get; set; }
public ActivityDefinitionProperties Properties { get; set; } = new ActivityDefinitionProperties();
}
}