Files
Cleanuparr/code/Common/Configuration/DownloadClient/DownloadClientConfig.cs
2025-01-15 23:55:34 +02:00

9 lines
276 B
C#

using Microsoft.Extensions.Configuration;
namespace Common.Configuration.DownloadClient;
public sealed record DownloadClientConfig
{
[ConfigurationKeyName("DOWNLOAD_CLIENT")]
public Enums.DownloadClient DownloadClient { get; init; } = Enums.DownloadClient.None;
}