using Ardalis.Result; using WatchIt.DTO.Models.Controllers.Accounts.Account; using WatchIt.DTO.Models.Controllers.Authentication; namespace WatchIt.WebAPI.BusinessLogic.Authentication; public interface IAuthenticationBusinessLogic { Task> Authenticate(AuthenticationRequest body); Task> AuthenticateRefresh(AuthenticationRefreshRequest body); }