dotnet-storage/OpenHarbor.Storage.Abstractions/IDirectoryOrFile.cs

7 lines
139 B
C#

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