7 lines
139 B
C#
7 lines
139 B
C#
namespace OpenHarbor.Storage.Abstractions;
|
|
|
|
public interface IDirectoryOrFile
|
|
{
|
|
string Path { get; }
|
|
bool IsDirectory { get; }
|
|
} |