jellyfin/MediaBrowser.Controller/Entities/ICollectionFolder.cs

34 lines
662 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CA1819, CS1591
using System;
using Jellyfin.Data.Enums;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// This is just a marker interface to denote top level folders.
2018-12-28 00:27:57 +01:00
/// </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
{
CollectionType? CollectionType { get; }
2018-12-28 00:27:57 +01:00
}
}