23 lines
412 B
C#
23 lines
412 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
|
|||
|
}
|
|||
|
}
|