aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ICollectionFolder.cs
blob: 4c6346f7ee21f9d4cd6cda423cf484b29a2e3b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// This is just a marker interface to denote top level folders
    /// </summary>
    public interface ICollectionFolder
    {
        string CollectionType { get; }
    }
}