jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs

10 lines
178 B
C#
Raw Normal View History

#pragma warning disable CA1819, CS1591
namespace MediaBrowser.Controller.Channels
{
public interface IHasFolderAttributes
{
string[] Attributes { get; }
}
2021-12-24 17:28:27 +00:00
}