Workflow Expanders
Learn more about workflow Expanders and how they are implemented.
Server-side implementation
public class DocumentWorkflowExpander : IWorkflowExpander
{
/// <summary>
/// Defines the entity type associated with the workflow instance.
/// This is the only required property.
/// </summary>
public string For => "document";
public bool? Bar { get; set; }
}Client-side implementation
Last updated
Was this helpful?