Files
cleanuperr/code/Infrastructure/Verticals/DownloadClient/RemoveResult.cs
T
2025-01-13 13:18:58 +02:00

14 lines
377 B
C#

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