Files
UmbraClient/MareSynchronos/WebAPI/Files/Models/FileDownloadStatus.cs
2025-08-31 00:21:08 +02:00

10 lines
314 B
C#

namespace MareSynchronos.WebAPI.Files.Models;
public class FileDownloadStatus
{
public DownloadStatus DownloadStatus { get; set; }
public long TotalBytes { get; set; }
public int TotalFiles { get; set; }
public long TransferredBytes { get; set; }
public int TransferredFiles { get; set; }
}