Files
Cleanuparr/code/Infrastructure/Verticals/DownloadClient/StalledResult.cs
2025-02-16 03:17:54 +02:00

18 lines
455 B
C#

using Domain.Enums;
namespace Infrastructure.Verticals.DownloadClient;
public sealed record StalledResult
{
/// <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; }
}