aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs
blob: 6c92785d213fa668703c6b301eb46b46334f6c94 (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; }
    }
}