mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-03 11:28:02 -05:00
25 lines
677 B
C#
25 lines
677 B
C#
using Cleanuparr.Domain.Enums;
|
|
|
|
namespace Cleanuparr.Infrastructure.Features.DownloadClient;
|
|
|
|
public sealed record DownloadCheckResult
|
|
{
|
|
/// <summary>
|
|
/// True if the download should be removed; otherwise false.
|
|
/// </summary>
|
|
public bool ShouldRemove { get; set; }
|
|
|
|
public DeleteReason DeleteReason { get; set; }
|
|
|
|
/// <summary>
|
|
/// True if the download is private; otherwise false.
|
|
/// </summary>
|
|
public bool IsPrivate { get; set; }
|
|
|
|
public bool Found { get; set; }
|
|
|
|
/// <summary>
|
|
/// True if the download should be deleted from the client; otherwise false.
|
|
/// </summary>
|
|
public bool DeleteFromClient { get; set; }
|
|
} |