jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs

10 lines
181 B
C#
Raw Normal View History

2021-07-22 23:37:05 -04:00
#pragma warning disable CA1819, CS1591
namespace MediaBrowser.Controller.Channels
{
public interface IHasFolderAttributes
{
string[] Attributes { get; }
}
2021-12-24 12:28:27 -05:00
}