using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
///
/// Marker interface to denote a class that supports being hidden underneath it's boxset.
/// Just about anything can be placed into a boxset,
/// but movies should also only appear underneath and not outside separately (subject to configuration).
///
public interface ISupportsBoxSetGrouping
{
///
/// Gets or sets the box set identifier list.
///
/// The box set identifier list.
List BoxSetIdList { get; set; }
}
}