Files
CalendarReminder/CalendarReminder.Api/Models/AuthModels.cs
T
2026-06-11 19:33:03 +02:00

6 lines
290 B
C#

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, bool IsAdmin, bool MustChangePassword);