10 lines
226 B
C#
10 lines
226 B
C#
|
namespace ZXLA
|
||
|
{
|
||
|
class File : FileSystemObject
|
||
|
{
|
||
|
public File(string path, int depth, bool isDisplay = true) : base(path, depth, isDisplay)
|
||
|
{
|
||
|
fileType = FileObjectType.File;
|
||
|
}
|
||
|
}
|
||
|
}
|