Files
pgsql-jellyfin/MediaBrowser.Controller/Channels/IHasFolderAttributes.cs

14 lines
328 B
C#

// <copyright file="IHasFolderAttributes.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#pragma warning disable CA1819, CS1591
namespace MediaBrowser.Controller.Channels
{
public interface IHasFolderAttributes
{
string[] Attributes { get; }
}
}