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