using SPMS.Application.DTOs.Auth; namespace SPMS.Application.Interfaces; public interface IAuthService { Task SignupAsync(SignupRequestDto request); Task LoginAsync(LoginRequestDto request); Task RefreshTokenAsync(TokenRefreshRequestDto request); Task LogoutAsync(long adminId); Task ChangePasswordAsync(long adminId, ChangePasswordRequestDto request); }