dotnet-cakemail-sdk/CM.Authentication/AuthenticationOptions.cs

10 lines
308 B
C#

namespace CM.Authentication;
public class AuthenticationOptions
{
public required string TokenEndpoint { get; set; }
public required string Username { get; set; }
public required string Password { get; set; }
public JwtTokenCacheOptions CacheOptions { get; set; } = new JwtTokenCacheOptions();
}