jellyfin/MediaBrowser.Model/Entities/LocationType.cs

29 lines
518 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Enum LocationType.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum LocationType
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// The file system.
2018-12-28 00:27:57 +01:00
/// </summary>
FileSystem = 0,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The remote.
2018-12-28 00:27:57 +01:00
/// </summary>
Remote = 1,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The virtual.
2018-12-28 00:27:57 +01:00
/// </summary>
Virtual = 2,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The offline.
2018-12-28 00:27:57 +01:00
/// </summary>
Offline = 3
}
}