aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ICollectionFolder.cs
blob: b61e7b3390554fe7907245fd53eedbb75a4c4fb5 (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
using System;
using System.Collections.Generic;
using System.Linq;

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
    {
        string CollectionType { get; }
    }
}