File attachment WIP

This commit is contained in:
TheXamlGuy
2024-07-24 21:18:40 +01:00
parent fdb674ab4b
commit cdefa9c371
4 changed files with 19 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Toolkit.Foundation;
public interface IFileDescriptor
{
string Name { get; }
string Path { get; }
int Size { get; }
}