Wire up file size

This commit is contained in:
TheXamlGuy
2024-07-24 22:21:27 +01:00
parent 0c067ea133
commit 6779ac042b
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ public partial class AttachmentEntryCollectionViewModel(IServiceProvider provide
string path = file.Path;
DateTimeOffset created = DateTimeOffset.Now;
string name = file.Name;
int size = file.Size;
long size = file.Size;
Attachment attachment = new()
{