mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 04:47:50 -05:00
14 lines
381 B
C#
14 lines
381 B
C#
namespace Infrastructure.Verticals.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; }
|
|
} |