dotnet-storage/PoweredSoft.Storage.Core/IDirectoryOrFile.cs
2020-03-13 11:18:25 -04:00

9 lines
155 B
C#

namespace PoweredSoft.Storage.Core
{
public interface IDirectoryOrFile
{
string Path { get; }
bool IsDirectory { get; }
}
}