Files
2025-06-18 21:58:48 +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; }
}