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