2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class BoxSet
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BoxSet : Folder
|
|
|
|
|
{
|
2013-07-06 00:19:44 +00:00
|
|
|
|
protected override bool SupportsShortcutChildren
|
2013-07-05 13:47:10 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|