mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-30 09:28:22 -05:00
9 lines
276 B
C#
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;
|
|
} |