Files
Cleanuparr/code/Domain/Models/Cache/StalledCacheItem.cs
2025-04-06 13:28:05 +03:00

9 lines
209 B
C#

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