You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/LocationType.cs

29 lines
518 B

5 years ago
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum LocationType.
5 years ago
/// </summary>
public enum LocationType
{
/// <summary>
/// The file system.
5 years ago
/// </summary>
FileSystem = 0,
5 years ago
/// <summary>
/// The remote.
5 years ago
/// </summary>
Remote = 1,
5 years ago
/// <summary>
/// The virtual.
5 years ago
/// </summary>
Virtual = 2,
5 years ago
/// <summary>
/// The offline.
5 years ago
/// </summary>
Offline = 3
}
}