aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ICollectionFolder.cs
blob: 742691b00339b8cb0373efee6ebb967ce6fe996d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#nullable disable

#pragma warning disable CA1819, CS1591

using System;
using Jellyfin.Data.Enums;

namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// This is just a marker interface to denote top level folders.
    /// </summary>
    public interface ICollectionFolder : IHasCollectionType
    {
        string Path { get; }

        string Name { get; }

        Guid Id { get; }

        string[] PhysicalLocations { get; }
    }

    public interface ISupportsUserSpecificView
    {
        bool EnableUserSpecificView { get; }
    }

    public interface IHasCollectionType
    {
        CollectionType? CollectionType { get; }
    }
}