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