mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
16 lines
No EOL
415 B
C#
16 lines
No EOL
415 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.System.FileSystem.Listing
|
|
{
|
|
public class File : Base
|
|
{
|
|
//TODO:UInt64? Size until ulong works.. nullable types have a problem right now
|
|
public File(FileSystem aFileSystem, string aName, UInt64 aSize)
|
|
: base(aFileSystem, aName)
|
|
{
|
|
mSize = aSize;
|
|
}
|
|
}
|
|
} |