Files
Cleanuparr/code/Common/Configuration/DownloadClient/DownloadClientConfig.cs
2025-01-11 01:45:12 +02:00

9 lines
283 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.QBittorrent;
}