mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 09:48:13 -05:00
14 lines
375 B
C#
14 lines
375 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Common.Configuration.DownloadClient;
|
|
|
|
public sealed record DownloadClientConfig : IConfig
|
|
{
|
|
[ConfigurationKeyName("DOWNLOAD_CLIENT")]
|
|
public Enums.DownloadClient DownloadClient { get; init; } = Enums.DownloadClient.None;
|
|
|
|
public void Validate()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |