mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
Add GPL modules
This commit is contained in:
26
MediaBrowser.Model/Entities/LocationType.cs
Normal file
26
MediaBrowser.Model/Entities/LocationType.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum LocationType
|
||||
/// </summary>
|
||||
public enum LocationType
|
||||
{
|
||||
/// <summary>
|
||||
/// The file system
|
||||
/// </summary>
|
||||
FileSystem = 0,
|
||||
/// <summary>
|
||||
/// The remote
|
||||
/// </summary>
|
||||
Remote = 1,
|
||||
/// <summary>
|
||||
/// The virtual
|
||||
/// </summary>
|
||||
Virtual = 2,
|
||||
/// <summary>
|
||||
/// The offline
|
||||
/// </summary>
|
||||
Offline = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user