6 lines
290 B
C#
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);
|