2015-04-15 14:59:20 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-07-29 13:31:15 -07:00
|
|
|
|
using System.Linq;
|
2014-10-11 18:46:02 -07:00
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is just a marker interface to denote top level folders
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ICollectionFolder
|
|
|
|
|
{
|
2014-06-14 16:13:09 -07:00
|
|
|
|
string CollectionType { get; }
|
2014-10-11 18:46:02 -07:00
|
|
|
|
string Path { get; }
|
2015-04-15 14:59:20 -07:00
|
|
|
|
string Name { get; }
|
|
|
|
|
Guid Id { get; }
|
2017-08-24 12:52:19 -07:00
|
|
|
|
string[] PhysicalLocations { get; }
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
2015-07-29 13:31:15 -07:00
|
|
|
|
|
2015-11-14 09:58:01 -07:00
|
|
|
|
public interface ISupportsUserSpecificView
|
|
|
|
|
{
|
|
|
|
|
bool EnableUserSpecificView { get; }
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|