You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
869 B
31 lines
869 B
#pragma warning disable CA2227
|
|
|
|
using System.Collections.Generic;
|
|
using Jellyfin.Data.Interfaces;
|
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
|
{
|
|
/// <summary>
|
|
/// An entity representing a movie.
|
|
/// </summary>
|
|
public class Movie : LibraryItem, IHasReleases
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Movie"/> class.
|
|
/// </summary>
|
|
public Movie()
|
|
{
|
|
Releases = new HashSet<Release>();
|
|
MovieMetadata = new HashSet<MovieMetadata>();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public virtual ICollection<Release> Releases { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a collection containing the metadata for this movie.
|
|
/// </summary>
|
|
public virtual ICollection<MovieMetadata> MovieMetadata { get; protected set; }
|
|
}
|
|
}
|