Skip to content

Commit 2a5b107

Browse files
committed
Correcting data type of properties in RejectWorkflowRequest from string to Guid
#45
1 parent 3cb89b3 commit 2a5b107

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FlowSynx.Client/Messages/Requests/Workflows/RejectWorkflowRequest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class RejectWorkflowRequest
44
{
5-
public required string WorkflowId { get; set; }
6-
public required string WorkflowExecutionId { get; set; }
7-
public required string WorkflowExecutionApprovalId { get; set; }
5+
public required Guid WorkflowId { get; set; }
6+
public required Guid WorkflowExecutionId { get; set; }
7+
public required Guid WorkflowExecutionApprovalId { get; set; }
88
}

0 commit comments

Comments
 (0)