Files
Toolkit2/Toolkit.Foundation/IFileDescriptor.cs
T
2024-07-24 21:18:40 +01:00

11 lines
146 B
C#

namespace Toolkit.Foundation;
public interface IFileDescriptor
{
string Name { get; }
string Path { get; }
int Size { get; }
}