Wire up file size

This commit is contained in:
TheXamlGuy
2024-07-24 22:21:27 +01:00
parent ee7ac8b28b
commit d45c6b90ed
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
namespace Toolkit.Foundation;
public record FileDescriptor(string Name, string Path, int Size) :
public record FileDescriptor(string Name, string Path, long Size) :
IFileDescriptor;
+1 -1
View File
@@ -6,5 +6,5 @@ public interface IFileDescriptor
string Path { get; }
int Size { get; }
long Size { get; }
}