jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs

9 lines
172 B
C#

#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
{
public interface IHasFolderAttributes
{
string[] Attributes { get; }
}
}