add response authenticate

This commit is contained in:
rayankonecny 2025-12-14 03:40:11 +00:00
parent de3428f786
commit 9a36d3f1a8
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,3 @@
{
"java.compile.nullAnalysis.mode": "automatic"
"java.compile.nullAnalysis.mode": "disabled"
}

View file

@ -0,0 +1,10 @@
package br.com.rayankonecny.hdcommoslib.models.responses;
import lombok.Builder;
@Builder
public record AuthenticationResponse(
String token,
String type
) {
}