10 lines
308 B
C#
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();
|
|
} |