#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities.Libraries
{
public partial class Movie : LibraryItem
{
partial void Init();
///
/// Default constructor. Protected due to required properties, but present because EF needs it.
///
protected Movie()
{
Releases = new HashSet();
MovieMetadata = new HashSet();
Init();
}
///
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
///
public static Movie CreateMovieUnsafe()
{
return new Movie();
}
///
/// Public constructor with required data.
///
/// This is whats gets displayed in the Urls and API requests. This could also be a string.
/// The date the object was added.
public Movie(Guid urlid, DateTime dateadded)
{
this.UrlId = urlid;
this.Releases = new HashSet();
this.MovieMetadata = new HashSet();
Init();
}
///
/// Static create function (for use in LINQ queries, etc.)
///
/// This is whats gets displayed in the Urls and API requests. This could also be a string.
/// The date the object was added.
public static Movie Create(Guid urlid, DateTime dateadded)
{
return new Movie(urlid, dateadded);
}
/*************************************************************************
* Properties
*************************************************************************/
/*************************************************************************
* Navigation properties
*************************************************************************/
[ForeignKey("Release_Releases_Id")]
public virtual ICollection Releases { get; protected set; }
[ForeignKey("MovieMetadata_MovieMetadata_Id")]
public virtual ICollection MovieMetadata { get; protected set; }
}
}