user administration

This commit is contained in:
roman
2026-06-11 19:33:03 +02:00
parent 639baafe4a
commit 31800eceda
12 changed files with 1031 additions and 9 deletions
+1 -1
View File
@@ -2,4 +2,4 @@ namespace CalendarReminder.Api.Models;
public record RegisterRequest(string Username, string Email, string Password);
public record LoginRequest(string Email, string Password);
public record AuthResponse(string Token, string Username, string Email);
public record AuthResponse(string Token, string Username, string Email, bool IsAdmin, bool MustChangePassword);