mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 03:48:54 -07:00
11 lines
233 B
C#
11 lines
233 B
C#
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Movies.Entities
|
|
{
|
|
public class Movie : Video
|
|
{
|
|
public IEnumerable<Video> SpecialFeatures { get; set; }
|
|
}
|
|
}
|