mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
17 lines
402 B
C#
17 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.System.Filesystem;
|
|
|
|
namespace SentinelKernel.FAT.Listing
|
|
{
|
|
public class MyFatDirectory : Cosmos.System.Filesystem.Listing.Directory
|
|
{
|
|
public MyFatDirectory(FileSystem aFileSystem, string aName)
|
|
: base(aFileSystem, aName)
|
|
{
|
|
}
|
|
}
|
|
}
|