Files
Cleanuparr/code/Domain/Models/Cache/CacheItem.cs

9 lines
202 B
C#

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