jellyfin/MediaBrowser.Model/Net/NetworkShareType.cs
2019-01-17 20:24:39 +01:00

30 lines
572 B
C#

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
}
}