2021-05-06 15:39:20 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 15:37:52 -07:00
|
|
|
/// This is just a marker interface to denote top level folders.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public interface ICollectionFolder : IHasCollectionType
|
|
|
|
{
|
|
|
|
string Path { get; }
|
2019-11-01 08:53:16 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
string Name { get; }
|
2019-11-01 08:53:16 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
Guid Id { get; }
|
2019-11-01 08:53:16 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
string[] PhysicalLocations { get; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface ISupportsUserSpecificView
|
|
|
|
{
|
|
|
|
bool EnableUserSpecificView { get; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface IHasCollectionType
|
|
|
|
{
|
|
|
|
string CollectionType { get; }
|
|
|
|
}
|
|
|
|
}
|