aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/FileSystemEntryType.cs
blob: e7c67c606107bfc3995e2800f898a94bc8e9329d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace MediaBrowser.Model.IO
{
    /// <summary>
    /// Enum FileSystemEntryType
    /// </summary>
    public enum FileSystemEntryType
    {
        /// <summary>
        /// The file
        /// </summary>
        File,
        /// <summary>
        /// The directory
        /// </summary>
        Directory,
        /// <summary>
        /// The network computer
        /// </summary>
        NetworkComputer,
        /// <summary>
        /// The network share
        /// </summary>
        NetworkShare
    }
}