namespace MediaBrowser.Model.IO { /// /// Class FileSystemEntryInfo /// public class FileSystemEntryInfo { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } /// /// Gets or sets the type. /// /// The type. public FileSystemEntryType Type { get; set; } } }