9 lines
269 B
C#
9 lines
269 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace Moonlight.Api.Implementations.ApiKeyScheme;
|
|
|
|
public class ApiKeySchemeOptions : AuthenticationSchemeOptions
|
|
{
|
|
public TimeSpan LookupL1CacheTime { get; set; }
|
|
public TimeSpan LookupL2CacheTime { get; set; }
|
|
} |