Zero/ZeroLevel/Services/FileSystem/FileMeta.cs

14 lines
326 B

6 years ago
namespace ZeroLevel.Services.FileSystem
{
public sealed class FileMeta
{
public FileMeta(string name, string path)
{
FileName = name;
FilePath = path;
}
public string FileName { get; private set; }
public string FilePath { get; private set; }
}
}

Powered by TurnKey Linux.