Files
Moonlight/Moonlight.ApiServer/Implementations/LocalAuth/LocalAuthOptions.cs

8 lines
211 B
C#

using Microsoft.AspNetCore.Authentication;
namespace Moonlight.ApiServer.Implementations.LocalAuth;
public class LocalAuthOptions : AuthenticationSchemeOptions
{
public string? SignInScheme { get; set; }
}