12 lines
223 B
C#
12 lines
223 B
C#
namespace StellaOps.Configuration;
|
|
|
|
public sealed class AuthorityAirGapOptions
|
|
{
|
|
public AuthoritySealedModeOptions SealedMode { get; } = new();
|
|
|
|
internal void Validate()
|
|
{
|
|
SealedMode.Validate();
|
|
}
|
|
}
|