dotnet-storage/PoweredSoft.Storage.Physical/PhysicalDirectory.cs

16 lines
320 B
C#
Raw Normal View History

2020-03-13 11:18:25 -04:00
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;
}
}