initial commit

This commit is contained in:
2026-04-21 06:25:33 +07:00
commit 85efdb7714
214 changed files with 6821 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package id.iptek.utms.auth.dto;
public record AuthTokenResponse(
String tokenType,
String accessToken,
String refreshToken,
long expiresInSeconds
) {
}