1namespace Den.Application.Auth; 2 3public record SignupRequest( 4 string Username, 5 string DisplayName, 6 string Email, 7 string Password 8);