jellyfin/MediaBrowser.Controller/Entities/ISupportsBoxSetGrouping.cs

12 lines
401 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Marker interface to denote a class that supports being hidden underneath it's boxset.
2019-01-07 18:27:46 -05:00
/// Just about anything can be placed into a boxset,
2018-12-27 18:27:57 -05:00
/// but movies should also only appear underneath and not outside separately (subject to configuration).
/// </summary>
public interface ISupportsBoxSetGrouping
{
}
}