Files
Servers/MoonlightServers.Daemon/Implementations/TokenScheme/TokenSchemeOptions.cs

8 lines
211 B
C#

using Microsoft.AspNetCore.Authentication;
namespace MoonlightServers.Daemon.Implementations.TokenScheme;
public class TokenSchemeOptions : AuthenticationSchemeOptions
{
public string Token { get; set; }
}