using System.Collections.Generic; namespace NzbDrone.Common.Disk { public class FileSystemResult { public string Parent { get; set; } public List Directories { get; set; } public List Files { get; set; } public FileSystemResult() { Directories = new List(); Files = new List(); } } }