mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-09 15:24:00 -04:00
19 lines
507 B
C#
19 lines
507 B
C#
namespace Cleanuparr.Api.Features.DownloadCleaner.Contracts.Requests;
|
|
|
|
public sealed record UnlinkedConfigRequest
|
|
{
|
|
public bool Enabled { get; init; }
|
|
|
|
public string TargetCategory { get; init; } = "cleanuparr-unlinked";
|
|
|
|
public bool UseTag { get; init; }
|
|
|
|
public List<string> IgnoredRootDirs { get; init; } = [];
|
|
|
|
public List<string> Categories { get; init; } = [];
|
|
|
|
public string? DownloadDirectorySource { get; init; }
|
|
|
|
public string? DownloadDirectoryTarget { get; init; }
|
|
}
|