Files
Cleanuparr/code/Data/Models/Cache/StalledCacheItem.cs
2025-05-27 02:21:34 +03:00

9 lines
207 B
C#

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