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
11 lines
314 B
C#
11 lines
314 B
C#
namespace Ablera.Serdica.Authentication.Models.Oidc;
|
|
|
|
public record AllowedMask
|
|
{
|
|
public bool? SameNetworks { get; init; }
|
|
public string[]? Hosts { get; init; }
|
|
public string[]? Networks { get; init; }
|
|
public int[]? Ports { get; init; }
|
|
public string[]? ClientIds { get; init; }
|
|
}
|