jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs
2021-12-24 18:28:27 +01:00

10 lines
181 B
C#

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