building-block-workflow/src/BuildingBlock.Workflow.Contracts/Requests/CreateWorkflowWorkItemRequest.cs

12 lines
307 B
C#

using BuildingBlock.Workflow.Contracts.Contracts;
namespace BuildingBlock.Workflow.Contracts.Requests;
public sealed record CreateWorkflowWorkItemRequest(
string WorkItemId,
string WorkType,
int Priority,
DateTime RequestedAtUtc,
WorkflowState InitialState,
string CorrelationId);