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.
19 lines
455 B
19 lines
455 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Common.Disk
|
|
{
|
|
public class FileSystemResult
|
|
{
|
|
public String Parent { get; set; }
|
|
public List<FileSystemModel> Directories { get; set; }
|
|
public List<FileSystemModel> Files { get; set; }
|
|
|
|
public FileSystemResult()
|
|
{
|
|
Directories = new List<FileSystemModel>();
|
|
Files = new List<FileSystemModel>();
|
|
}
|
|
}
|
|
}
|