jellyfin/MediaBrowser.Model/Entities/LocationType.cs

27 lines
514 B
C#
Raw Normal View History

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

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