aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs
blob: 64af8496c7f0fb17924bb3d40034ca20ad196a09 (plain)
1
2
3
4
5
6
7
8
9
#pragma warning disable CA1819, CS1591

namespace MediaBrowser.Controller.Channels
{
    public interface IHasFolderAttributes
    {
        string[] Attributes { get; }
    }
}