namespace MediaBrowser.Model.IO { /// /// Class FileSystemEntryInfo. /// public class FileSystemEntryInfo { /// /// Initializes a new instance of the class. /// /// The filename. /// The file path. /// The file type. public FileSystemEntryInfo(string name, string path, FileSystemEntryType type) { Name = name; Path = path; Type = type; } /// /// Gets the name. /// /// The name. public string Name { get; } /// /// Gets the path. /// /// The path. public string Path { get; } /// /// Gets the type. /// /// The type. public FileSystemEntryType Type { get; } } }