dotnet-storage/OpenHarbor.Abstractions/IDirectoryOrFile.cs

7 lines
131 B
C#
Raw Normal View History

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