jellyfin/MediaBrowser.Model/Entities/LocationType.cs

27 lines
514 B
C#
Raw Normal View History

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

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