namespace Cleanuparr.Infrastructure.Features.DownloadClient; public sealed record BlockFilesResult { /// /// True if the download should be removed; otherwise false. /// public bool ShouldRemove { get; set; } /// /// True if the download is private; otherwise false. /// public bool IsPrivate { get; set; } public bool Found { get; set; } }