jellyfin/MediaBrowser.Model/IO/FileSystemEntryType.cs

29 lines
531 B
C#
Raw Normal View History

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