using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystem
{
///
/// Represents a single file.
///
public class File
{
private string _name;
///
/// Gets or sets the name of the file.
///
public string Name
{
get { return _name; }
set { _name = value; }
}
}
}