Cosmos/source/Cosmos.System/FileSystem/Listing/File.cs
Matthijs ter Woord 3e5dd5f34b Ongoing work.
2015-10-04 15:58:17 +02:00

16 lines
457 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, Directory baseDirectory)
: base(aFileSystem, aName, baseDirectory)
{
mSize = aSize;
}
}
}