8 lines
189 B
C#
8 lines
189 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace MoonlightServers.Daemon.Helpers;
|
|
|
|
public class TokenAuthOptions : AuthenticationSchemeOptions
|
|
{
|
|
public string Token { get; set; }
|
|
} |