using System.Security.Claims; using AspNetCore.Authentication.ApiKey; namespace StalwartSimpleLoginMiddleware.Models; public class DbApiKey : IApiKey { public string Key { get; set; } public string OwnerName { get; set; } public IReadOnlyCollection Claims { get; set; } }