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);