27 lines
498 B
C#
27 lines
498 B
C#
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Enum LocationType
|
|
/// </summary>
|
|
public enum LocationType
|
|
{
|
|
/// <summary>
|
|
/// The file system
|
|
/// </summary>
|
|
FileSystem,
|
|
/// <summary>
|
|
/// The remote
|
|
/// </summary>
|
|
Remote,
|
|
/// <summary>
|
|
/// The virtual
|
|
/// </summary>
|
|
Virtual,
|
|
/// <summary>
|
|
/// The offline
|
|
/// </summary>
|
|
Offline
|
|
}
|
|
}
|