mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(dir): ♻ use records for options models
This commit is contained in:
parent
37d6b6aecb
commit
f5d8d747bf
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
namespace FilterLists.Archival.Infrastructure.Options;
|
||||
|
||||
internal class GitOptions
|
||||
internal record GitOptions
|
||||
{
|
||||
public const string Key = "Git";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
namespace FilterLists.Directory.Api.Contracts.Options;
|
||||
|
||||
internal class ApiOptions
|
||||
internal record ApiOptions
|
||||
{
|
||||
public const string Key = "Api";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
namespace FilterLists.SharedKernel.Logging.Options;
|
||||
|
||||
internal class ApplicationInsightsOptions
|
||||
internal record ApplicationInsightsOptions
|
||||
{
|
||||
public const string Key = "ApplicationInsights";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue