namespace Foxel.Models.Request.Auth; public record LoginRequest { public string Email { get; set; } = string.Empty; public string Password { get; set; } = string.Empty; }