dotnet-cakemail-sdk/CM.Authentication.Abstractions/IJwtTokenManagerService.cs

6 lines
175 B
C#

namespace CM.Authentication.Abstractions;
public interface IJwtTokenManagerService
{
Task<JwtTokenResult> GetTokenAsync(CancellationToken cancellationToken = default);
}