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,7 @@
package com.vaessl.app.dto;
import java.time.Instant;
public record ConnectionResponse(String token, String attachmentToken, Instant expiresAt) {
}