namespace AVSCartonShipmentVerifier.Configuration;
public sealed class DesktopHostOptions
{
public const string SectionName = "DesktopHost";
///
/// When true (default on Windows), opens the default browser after the server starts.
///
public bool LaunchBrowser { get; init; } = true;
///
/// Optional URL to open. If empty, the first bound HTTP address from Kestrel is used.
///
public string? BrowserUrl { get; init; }
}