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