jellyfin/MediaBrowser.Model/IO/FileSystemEntryType.cs

29 lines
531 B
C#
Raw Normal View History

2018-12-27 23:27:57 +00:00
namespace MediaBrowser.Model.IO
{
/// <summary>
2020-02-04 00:49:27 +00:00
/// Enum FileSystemEntryType.
2018-12-27 23:27:57 +00:00
/// </summary>
public enum FileSystemEntryType
{
/// <summary>
2020-02-04 00:49:27 +00:00
/// The file.
2018-12-27 23:27:57 +00:00
/// </summary>
File,
2020-02-04 00:49:27 +00:00
2018-12-27 23:27:57 +00:00
/// <summary>
2020-02-04 00:49:27 +00:00
/// The directory.
2018-12-27 23:27:57 +00:00
/// </summary>
Directory,
2020-02-04 00:49:27 +00:00
2018-12-27 23:27:57 +00:00
/// <summary>
2020-02-04 00:49:27 +00:00
/// The network computer.
2018-12-27 23:27:57 +00:00
/// </summary>
NetworkComputer,
2020-02-04 00:49:27 +00:00
2018-12-27 23:27:57 +00:00
/// <summary>
2020-02-04 00:49:27 +00:00
/// The network share.
2018-12-27 23:27:57 +00:00
/// </summary>
NetworkShare
}
}