dotnet-storage/PoweredSoft.Storage.Core/IDirectoryOrFile.cs

9 lines
155 B
C#
Raw Permalink Normal View History

2020-03-13 11:18:25 -04:00
namespace PoweredSoft.Storage.Core
{
public interface IDirectoryOrFile
{
string Path { get; }
bool IsDirectory { get; }
}
}