File Browser

New: File Browser to navigate to folders when choosing paths
This commit is contained in:
Mark McDowall
2014-12-15 23:28:55 -08:00
parent a55a77cb5b
commit 85a9b74008
51 changed files with 955 additions and 228 deletions
@@ -0,0 +1,22 @@
using System;
namespace NzbDrone.Common.Disk
{
public class FileSystemModel
{
public FileSystemEntityType Type { get; set; }
public string Name { get; set; }
public string Path { get; set; }
public string Extension { get; set; }
public long Size { get; set; }
public DateTime? LastModified { get; set; }
}
public enum FileSystemEntityType
{
Parent,
Drive,
Folder,
File
}
}