improvements on nflow workflows

This commit is contained in:
2025-09-14 11:50:52 +02:00
parent e13e8e1ffe
commit 1db27e22b2
11 changed files with 176 additions and 124 deletions

View File

@@ -0,0 +1,12 @@
package zw.qantra.tm.domain.dtos;
import lombok.Data;
@Data
public class VerifyRequest {
private String username;
private String otpCode;
private String otpType;
private Long workflowId;
private String externalId;
}