2012-07-16 16:50:44 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-07-20 02:22:44 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Movies.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Movie : Video
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<Video> SpecialFeatures { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|