blob: 3270d5b74fd14630948ade0e22dedd0d27314a59 (
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
|
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
}
}
|