mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-05 19:41:56 -05:00
16 lines
407 B
C#
16 lines
407 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Common.Configuration.IgnoredDownloads;
|
|
|
|
/// <summary>
|
|
/// Configuration for ignored downloads
|
|
/// </summary>
|
|
public class IgnoredDownloadsConfig
|
|
{
|
|
/// <summary>
|
|
/// List of download IDs to be ignored by all jobs
|
|
/// </summary>
|
|
[ConfigurationKeyName("IGNORED_DOWNLOADS")]
|
|
public List<string> IgnoredDownloads { get; init; } = new();
|
|
}
|