register command created

This commit is contained in:
2026-01-11 02:30:08 +01:00
Unverified
parent 65ba579704
commit 56e66a2bdd
29 changed files with 102 additions and 57 deletions

View File

@@ -0,0 +1,7 @@
namespace TimetableDesigner.Backend.Services.Authentication.DTO;
public class AuthenticateResponse
{
public string AccessToken { get; set; } = null!;
public string RefreshToken { get; set; } = null!;
}