Files
Cleanuparr/code/Infrastructure/Verticals/DownloadClient/DownloadCheckResult.cs
2025-05-27 02:21:34 +03:00

20 lines
500 B
C#

using Data.Enums;
namespace Infrastructure.Verticals.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; }
}