mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 09:58:53 -05:00
9 lines
202 B
C#
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; }
|
|
} |