2026-01-21 15:07:20 +00:00
|
|
|
namespace RealCV.Infrastructure.Configuration;
|
2026-01-18 19:20:50 +01:00
|
|
|
|
|
|
|
|
public sealed class CompaniesHouseSettings
|
|
|
|
|
{
|
|
|
|
|
public const string SectionName = "CompaniesHouse";
|
|
|
|
|
|
|
|
|
|
public required string BaseUrl { get; init; }
|
|
|
|
|
public required string ApiKey { get; init; }
|
|
|
|
|
}
|