add rawsize into download file dto, surely nothing will go wrong

This commit is contained in:
Stanley Dimant
2024-09-06 10:47:26 +02:00
parent 4a0ee24688
commit 7cc3ec43e2

View File

@@ -11,4 +11,5 @@ public record DownloadFileDto : ITransferFileDto
public long Size { get; set; } = 0; public long Size { get; set; } = 0;
public bool IsForbidden { get; set; } = false; public bool IsForbidden { get; set; } = false;
public string ForbiddenBy { get; set; } = string.Empty; public string ForbiddenBy { get; set; } = string.Empty;
public long RawSize { get; set; } = 0;
} }