using System.Collections.Generic; using Jellyfin.Data.Interfaces; namespace Jellyfin.Data.Entities.Libraries { /// /// An entity representing a movie. /// public class Movie : LibraryItem, IHasReleases { /// /// Initializes a new instance of the class. /// /// The library. public Movie(Library library) : base(library) { Releases = new HashSet(); MovieMetadata = new HashSet(); } /// public virtual ICollection Releases { get; private set; } /// /// Gets a collection containing the metadata for this movie. /// public virtual ICollection MovieMetadata { get; private set; } } }