1namespace Den.Application.Auth; 2 3public interface IAuthService 4{ 5 Task<AuthResponse> SignupAsync(SignupRequest request); 6 Task<AuthResponse?> LoginAsync(LoginRequest request); 7 Task<RefreshResponse?> RefreshAsync(RefreshRequest request); 8}