Files
Cleanuparr/code/Common/Configuration/DownloadClient/DownloadClientConfig.cs
Flaminel a68a4c733f fix #1
2025-05-15 16:18:09 +03:00

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();
}
}