Files
Cleanuparr/code/Infrastructure/Verticals/DownloadClient/StalledResult.cs

14 lines
378 B
C#

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