mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-26 23:48:30 -05:00
16 lines
432 B
C#
16 lines
432 B
C#
namespace Cleanuparr.Infrastructure.Features.DownloadClient;
|
|
|
|
public sealed record BlockFilesResult
|
|
{
|
|
/// <summary>
|
|
/// True if the download should be removed; otherwise false.
|
|
/// </summary>
|
|
public bool ShouldRemove { get; set; }
|
|
|
|
/// <summary>
|
|
/// True if the download is private; otherwise false.
|
|
/// </summary>
|
|
public bool IsPrivate { get; set; }
|
|
|
|
public bool Found { get; set; }
|
|
} |