jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs
2021-05-13 07:33:11 -06:00

9 lines
172 B
C#

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