mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-28 08:28:03 -05:00
9 lines
222 B
C#
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; }
|
|
} |