added post request to achieve login response with tokens

This commit is contained in:
2026-03-30 05:07:51 +02:00
parent 8128ab829f
commit 75b6995b94
6 changed files with 231 additions and 0 deletions
@@ -0,0 +1,9 @@
package com.vaessl.app.dto;
import jakarta.validation.constraints.NotBlank;
public record ConnectionRequest(
@NotBlank(message = "App URL is mandatory") String appUrl,
@NotBlank(message = "Username is mandatory") String username,
@NotBlank(message = "Password is mandatory") String password) {
}