using AutobusApi.Application.Common.Models.Identity; namespace AutobusApi.Application.Common.Interfaces; public interface IIdentityService { Task RegisterAsync(string email, string password, CancellationToken cancellationToken); Task LoginAsync(string email, string password, CancellationToken cancellationToken); Task RenewAccessTokenAsync(string refreshToken, CancellationToken cancellationToken); Task RevokeRefreshTokenAsync(string refreshToken, CancellationToken cancellationToken); }