dotnet-storage/PoweredSoft.Storage.Physical/PhysicalDirectory.cs
2020-03-13 11:18:25 -04:00

16 lines
320 B
C#

using PoweredSoft.Storage.Core;
namespace PoweredSoft.Storage.Physical
{
public class PhysicalDirectoryInfo : IDirectoryInfo
{
public PhysicalDirectoryInfo(string path)
{
Path = path;
}
public string Path { get; }
public bool IsDirectory => true;
}
}