You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Net/NetworkShareType.cs

34 lines
582 B

6 years ago
namespace MediaBrowser.Model.Net
{
/// <summary>
/// Enum NetworkShareType.
6 years ago
/// </summary>
public enum NetworkShareType
{
/// <summary>
/// Disk share.
6 years ago
/// </summary>
Disk,
6 years ago
/// <summary>
/// Printer share.
6 years ago
/// </summary>
Printer,
6 years ago
/// <summary>
/// Device share.
6 years ago
/// </summary>
Device,
6 years ago
/// <summary>
/// IPC share.
6 years ago
/// </summary>
Ipc,
6 years ago
/// <summary>
/// Special share.
6 years ago
/// </summary>
Special
}
}