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