8 lines
215 B
C#
8 lines
215 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace Moonlight.Api.Implementations.ApiKeyScheme;
|
|
|
|
public class ApiKeySchemeOptions : AuthenticationSchemeOptions
|
|
{
|
|
public TimeSpan LookupCacheTime { get; set; }
|
|
} |