using Refit; using WatchIt.DTO.Models.Controllers.Authentication; namespace WatchIt.Website.Clients; public interface IAuthenticationClient { [Post("/authenticate")] Task> Authenticate([Body] AuthenticationRequest body); [Post("/authenticate_refresh")] Task> AuthenticateRefresh([Body] AuthenticationRefreshRequest body); }