jellyfin/MediaBrowser.Model/Entities/LocationType.cs

29 lines
518 B
C#
Raw Normal View History

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