jellyfin/MediaBrowser.Model/IO/FileSystemEntryType.cs

29 lines
531 B
C#
Raw Normal View History

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