namespace WordPressStaticExporter.Models; public sealed class ExportSettings { public required Uri StartUrl { get; init; } public required string OutputDirectory { get; init; } public int MaxPages { get; init; } = 1000; public bool DownloadExternalAssets { get; init; } = true; public bool CaptureScreenshots { get; init; } = false; public bool RespectRobotsTxt { get; init; } = true; }