tests fixes and sprints work
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using StellaOps.Policy.Licensing;
|
||||
|
||||
namespace StellaOps.Policy.Engine.Options;
|
||||
|
||||
public sealed record LicenseComplianceOptions
|
||||
{
|
||||
public const string SectionName = "licenseCompliance";
|
||||
|
||||
public bool Enabled { get; init; } = true;
|
||||
public string? PolicyPath { get; init; }
|
||||
public LicensePolicy? Policy { get; init; }
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using StellaOps.Policy.NtiaCompliance;
|
||||
|
||||
namespace StellaOps.Policy.Engine.Options;
|
||||
|
||||
public sealed record NtiaComplianceOptions
|
||||
{
|
||||
public const string SectionName = "ntiaCompliance";
|
||||
|
||||
public bool Enabled { get; init; } = false;
|
||||
public bool EnforceGate { get; init; } = false;
|
||||
public string? PolicyPath { get; init; }
|
||||
public NtiaCompliancePolicy? Policy { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user