mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
439 B
C#
17 lines
439 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.System.FileSystem.FAT.Listing
|
|
{
|
|
public class FatDirectory : System.FileSystem.Listing.Directory
|
|
{
|
|
public FatDirectory(FileSystem aFileSystem, string aName, uint firstCluster)
|
|
: base(aFileSystem, aName)
|
|
{
|
|
FirstClusterNr = firstCluster;
|
|
}
|
|
|
|
public uint FirstClusterNr;
|
|
}
|
|
}
|