Files
mxaccessgw/src/MxGateway.Server/Security/Authentication/ApiKeyIdentity.cs
T
2026-04-26 16:40:46 -04:00

8 lines
188 B
C#

namespace MxGateway.Server.Security.Authentication;
public sealed record ApiKeyIdentity(
string KeyId,
string KeyPrefix,
string DisplayName,
IReadOnlySet<string> Scopes);