10 lines
251 B
C#
10 lines
251 B
C#
|
|
namespace TrueCV.Infrastructure.Configuration;
|
||
|
|
|
||
|
|
public sealed class CompaniesHouseSettings
|
||
|
|
{
|
||
|
|
public const string SectionName = "CompaniesHouse";
|
||
|
|
|
||
|
|
public required string BaseUrl { get; init; }
|
||
|
|
public required string ApiKey { get; init; }
|
||
|
|
}
|