Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/LocationType.cs

27 lines
514 B
C#
Raw Normal View History

2013-02-20 20:33:05 -05:00

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