11 lines
309 B
C#
11 lines
309 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace PARR.API.Authentication
|
|
{
|
|
public class ParrAuthenticationOptions : AuthenticationSchemeOptions
|
|
{
|
|
public const string DefaultScheme = "ParrAuthenticationScheme";
|
|
//public string TokenHeaderName { get; set; } = "MyToken";
|
|
}
|
|
}
|