Files
2025-06-27 15:39:26 +03:00

9 lines
222 B
C#

namespace Cleanuparr.Domain.Entities.Cache;
public sealed record StalledCacheItem
{
/// <summary>
/// The amount of bytes that have been downloaded.
/// </summary>
public long Downloaded { get; set; }
}