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; } }