From 7cc3ec43e2e805ae4ace99e308a8825803963675 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Fri, 6 Sep 2024 10:47:26 +0200 Subject: [PATCH] add rawsize into download file dto, surely nothing will go wrong --- MareSynchronosAPI/Dto/Files/DownloadFileDto.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MareSynchronosAPI/Dto/Files/DownloadFileDto.cs b/MareSynchronosAPI/Dto/Files/DownloadFileDto.cs index d2ffe05..878a015 100644 --- a/MareSynchronosAPI/Dto/Files/DownloadFileDto.cs +++ b/MareSynchronosAPI/Dto/Files/DownloadFileDto.cs @@ -11,4 +11,5 @@ public record DownloadFileDto : ITransferFileDto public long Size { get; set; } = 0; public bool IsForbidden { get; set; } = false; public string ForbiddenBy { get; set; } = string.Empty; + public long RawSize { get; set; } = 0; } \ No newline at end of file