mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
19 lines
353 B
C#
19 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Sys.FileSystem.FAT32
|
|
{
|
|
public class DirectoryTable
|
|
{
|
|
FAT fat;
|
|
uint cluster;
|
|
public DirectoryTable(FAT fat, uint cluster)
|
|
{
|
|
this.fat = fat;
|
|
this.cluster = cluster;
|
|
}
|
|
|
|
}
|
|
}
|