dotnet-storage/OpenHarbor.Abstractions/IDirectoryOrFile.cs

7 lines
131 B
C#

namespace OpenHarbor.Abstractions;
public interface IDirectoryOrFile
{
string Path { get; }
bool IsDirectory { get; }
}