jellyfin/MediaBrowser.Controller/Entities/ICollectionFolder.cs

29 lines
566 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// This is just a marker interface to denote top level folders
/// </summary>
public interface ICollectionFolder : IHasCollectionType
{
string Path { get; }
2018-12-28 00:27:57 +01:00
string Name { get; }
2018-12-28 00:27:57 +01:00
Guid Id { get; }
2018-12-28 00:27:57 +01:00
string[] PhysicalLocations { get; }
}
public interface ISupportsUserSpecificView
{
bool EnableUserSpecificView { get; }
}
public interface IHasCollectionType
{
string CollectionType { get; }
}
}