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; }
}
///
/// Enum FileSystemEntryType
///
public enum FileSystemEntryType
{
///
/// The file
///
File,
///
/// The directory
///
Directory,
///
/// The network computer
///
NetworkComputer,
///
/// The network share
///
NetworkShare
}
}