jellyfin/MediaBrowser.Model/Entities/LocationType.cs

27 lines
514 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum LocationType
/// </summary>
public enum LocationType
{
/// <summary>
/// The file system
/// </summary>
2014-02-19 06:21:03 +01:00
FileSystem = 0,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The remote
/// </summary>
2014-02-19 06:21:03 +01:00
Remote = 1,
2013-02-21 02:33:05 +01:00
/// <summary>
/// The virtual
/// </summary>
2014-02-19 06:21:03 +01:00
Virtual = 2,
2013-07-05 16:54:14 +02:00
/// <summary>
/// The offline
/// </summary>
2014-02-19 06:21:03 +01:00
Offline = 3
2013-02-21 02:33:05 +01:00
}
}