mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
File Browser
New: File Browser to navigate to folders when choosing paths
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user