aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/NetworkShareType.cs
blob: 5d985f85d3b95cc8f0a10bc1b14822be293e38ff (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
26
27
28
29
30
31
32
33
namespace MediaBrowser.Model.Net
{
    /// <summary>
    /// Enum NetworkShareType.
    /// </summary>
    public enum NetworkShareType
    {
        /// <summary>
        /// Disk share.
        /// </summary>
        Disk,

        /// <summary>
        /// Printer share.
        /// </summary>
        Printer,

        /// <summary>
        /// Device share.
        /// </summary>
        Device,

        /// <summary>
        /// IPC share.
        /// </summary>
        Ipc,

        /// <summary>
        /// Special share.
        /// </summary>
        Special
    }
}