Created JWT endpoints

This commit is contained in:
2026-02-21 19:35:55 +01:00
parent 1c0fc26f7e
commit 9740d92cbf
8 changed files with 140 additions and 7 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace BeReadyBackend.DTO.Auth;
public class GetTokenDto
{
public string? Token { get; set; }
}
+7
View File
@@ -0,0 +1,7 @@
namespace BeReadyBackend.DTO.Auth;
public class LoginDto
{
public string? Username { get; set; }
public string? Password { get; set; }
}
@@ -0,0 +1,6 @@
namespace BeReadyBackend.DTO.Auth;
public class RefreshTokenDto
{
public string? Token { get; set; }
}