namespace SVSim.EmulatedEntrypoint.Configuration; /// /// Config for the /admin/* util endpoints. Bound from the "Admin" section of appsettings. /// public class AdminOptions { public const string SectionName = "Admin"; /// /// Shared secret required in the X-Admin-Secret header on protected admin endpoints /// (see ). Empty / whitespace means /// the endpoint is disabled — the filter fails closed so an unconfigured deployment never /// exposes the admin surface. /// public string ImportSecret { get; set; } = string.Empty; }