mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
14 lines
338 B
C#
14 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.System.Filesystem.Listing {
|
|
public class File : Base {
|
|
//TODO:UInt64 Size
|
|
public File(FileSystem aFileSystem, string aName, UInt32? aSize)
|
|
: base(aFileSystem, aName) {
|
|
mSize = aSize;
|
|
}
|
|
}
|
|
}
|