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