10 lines
217 B
C#
10 lines
217 B
C#
|
using OpenHarbor.Abstractions;
|
|||
|
|
|||
|
namespace OpenHarbor.Storage.Physical;
|
|||
|
|
|||
|
public class PhysicalDirectoryInfo(string path) : IDirectoryInfo
|
|||
|
{
|
|||
|
public string Path { get; } = path;
|
|||
|
public bool IsDirectory => true;
|
|||
|
}
|