mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-26 22:35:49 -04:00
15 lines
389 B
C#
15 lines
389 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; } = [];
|
|
}
|