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(); }