2012-07-16 09:50:44 -07:00
|
|
|
|
using System.Collections.Generic;
|
2012-07-19 19:22:44 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2012-07-11 23:55:27 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Movies.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Movie : Video
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<Video> SpecialFeatures { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|