Files
parr_api/PARR.API/Authentication/ParrAuthenticationOptions.cs

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";
}
}