mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
14 lines
No EOL
294 B
C#
14 lines
No EOL
294 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.System.FileSystem.Listing
|
|
{
|
|
public class Directory : Base
|
|
{
|
|
public Directory(FileSystem aFileSystem, string aName)
|
|
: base(aFileSystem, aName)
|
|
{
|
|
}
|
|
}
|
|
} |