namespace DocumentOperator.Infrastructure.Configuration; public class ApiKeySettings { public const string SectionName = "ApiKeySettings"; public bool EnableValidation { get; set; } = true; public Dictionary Keys { get; set; } = new(); }