jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs
2021-07-22 20:37:05 -07:00

9 lines
180 B
C#

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