You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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.