using Domain.Enums; namespace Infrastructure.Verticals.DownloadClient; public sealed record DownloadCheckResult { /// /// True if the download should be removed; otherwise false. /// public bool ShouldRemove { get; set; } public DeleteReason DeleteReason { get; set; } /// /// True if the download is private; otherwise false. /// public bool IsPrivate { get; set; } }