1namespace Den.Application.Auth; 2 3public record AuthResponse( 4 string AccessToken, 5 string RefreshToken, 6 DateTime ExpiresIn, 7 string TokenType = "Bearer" 8);