namespace Common.Settings; /// /// Connection settings for the internal page-fetcher-api service. /// Bound from the PageFetcherApi configuration section. /// public sealed class PageFetcherApiSettings { public string BaseUrl { get; set; } = string.Empty; public string InternalApiKey { get; set; } = string.Empty; }