using QYZH.InteractiveMagazine.IService.Dto; namespace QYZH.InteractiveMagazine.IService; public interface IAdminAuthService { Task LoginAsync(AdminLoginInput input); Task LogoutAsync(long userId); Task GetAdminInfoAsync(long userId); Task ChangePasswordAsync(long userId, string oldPassword, string newPassword); }