10 lines
276 B
C#
10 lines
276 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace WebDesktopBackend.Security.Authentication
|
|
{
|
|
public class JwtTokenAuthenticationHandlerOptions : AuthenticationSchemeOptions
|
|
{
|
|
// Options for the authentication handler.
|
|
// Currently: None
|
|
}
|
|
} |