Some checks failed
Build Test Deploy / build-test (push) Has been cancelled
Build Test Deploy / authority-container (push) Has been cancelled
Build Test Deploy / docs (push) Has been cancelled
Build Test Deploy / deploy (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
8 lines
210 B
C#
8 lines
210 B
C#
namespace Ablera.Serdica.Authentication.Models.Oidc;
|
|
|
|
public abstract record OidcSettingsBase
|
|
{
|
|
public string? EncryptionKey { get; init; }
|
|
public AllowedMask[]? AllowedMasks { get; init; }
|
|
}
|