jellyfin/Jellyfin.Data/Entities/MovieMetadata.cs

239 lines
7.3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities
{
2020-05-02 23:56:05 +02:00
public partial class MovieMetadata : Metadata
{
partial void Init();
/// <summary>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </summary>
2020-05-10 16:54:41 +02:00
protected MovieMetadata()
2020-05-02 23:56:05 +02:00
{
Studios = new HashSet<Company>();
Init();
}
/// <summary>
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
/// </summary>
public static MovieMetadata CreateMovieMetadataUnsafe()
{
return new MovieMetadata();
}
/// <summary>
/// Public constructor with required data.
2020-05-02 23:56:05 +02:00
/// </summary>
2020-06-19 12:21:49 +02:00
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
2020-05-02 23:56:05 +02:00
/// <param name="_movie0"></param>
public MovieMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
{
2020-06-20 10:35:29 +02:00
if (string.IsNullOrEmpty(title))
{
throw new ArgumentNullException(nameof(title));
}
2020-05-02 23:56:05 +02:00
this.Title = title;
2020-06-20 10:35:29 +02:00
if (string.IsNullOrEmpty(language))
{
throw new ArgumentNullException(nameof(language));
}
2020-05-02 23:56:05 +02:00
this.Language = language;
2020-06-20 10:35:29 +02:00
if (_movie0 == null)
{
throw new ArgumentNullException(nameof(_movie0));
}
2020-05-02 23:56:05 +02:00
_movie0.MovieMetadata.Add(this);
this.Studios = new HashSet<Company>();
Init();
}
/// <summary>
/// Static create function (for use in LINQ queries, etc.)
/// </summary>
2020-06-19 12:21:49 +02:00
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
2020-05-02 23:56:05 +02:00
/// <param name="_movie0"></param>
public static MovieMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Movie _movie0)
{
return new MovieMetadata(title, language, dateadded, datemodified, _movie0);
}
/*************************************************************************
* Properties
*************************************************************************/
/// <summary>
/// Backing field for Outline.
2020-05-02 23:56:05 +02:00
/// </summary>
protected string _Outline;
/// <summary>
/// When provided in a partial class, allows value of Outline to be changed before setting.
/// </summary>
partial void SetOutline(string oldValue, ref string newValue);
/// <summary>
/// When provided in a partial class, allows value of Outline to be changed before returning.
/// </summary>
partial void GetOutline(ref string result);
/// <summary>
/// Max length = 1024
/// </summary>
[MaxLength(1024)]
[StringLength(1024)]
public string Outline
{
get
{
2020-05-02 23:56:05 +02:00
string value = _Outline;
GetOutline(ref value);
2020-06-19 11:57:37 +02:00
return _Outline = value;
}
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
set
{
2020-05-02 23:56:05 +02:00
string oldValue = _Outline;
SetOutline(oldValue, ref value);
if (oldValue != value)
{
_Outline = value;
}
}
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Backing field for Plot.
2020-05-02 23:56:05 +02:00
/// </summary>
protected string _Plot;
/// <summary>
/// When provided in a partial class, allows value of Plot to be changed before setting.
/// </summary>
partial void SetPlot(string oldValue, ref string newValue);
/// <summary>
/// When provided in a partial class, allows value of Plot to be changed before returning.
/// </summary>
partial void GetPlot(ref string result);
/// <summary>
/// Max length = 65535
/// </summary>
[MaxLength(65535)]
[StringLength(65535)]
public string Plot
{
get
{
2020-05-02 23:56:05 +02:00
string value = _Plot;
GetPlot(ref value);
2020-06-19 11:57:37 +02:00
return _Plot = value;
}
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
set
{
2020-05-02 23:56:05 +02:00
string oldValue = _Plot;
SetPlot(oldValue, ref value);
if (oldValue != value)
{
_Plot = value;
}
}
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Backing field for Tagline.
2020-05-02 23:56:05 +02:00
/// </summary>
protected string _Tagline;
/// <summary>
/// When provided in a partial class, allows value of Tagline to be changed before setting.
/// </summary>
partial void SetTagline(string oldValue, ref string newValue);
/// <summary>
/// When provided in a partial class, allows value of Tagline to be changed before returning.
/// </summary>
partial void GetTagline(ref string result);
/// <summary>
/// Max length = 1024
/// </summary>
[MaxLength(1024)]
[StringLength(1024)]
public string Tagline
{
get
{
string value = _Tagline;
GetTagline(ref value);
2020-06-19 11:57:37 +02:00
return _Tagline = value;
2020-05-02 23:56:05 +02:00
}
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
set
{
string oldValue = _Tagline;
SetTagline(oldValue, ref value);
if (oldValue != value)
{
_Tagline = value;
}
}
}
/// <summary>
/// Backing field for Country.
2020-05-02 23:56:05 +02:00
/// </summary>
protected string _Country;
/// <summary>
/// When provided in a partial class, allows value of Country to be changed before setting.
/// </summary>
partial void SetCountry(string oldValue, ref string newValue);
/// <summary>
/// When provided in a partial class, allows value of Country to be changed before returning.
/// </summary>
partial void GetCountry(ref string result);
/// <summary>
/// Max length = 2
/// </summary>
[MaxLength(2)]
[StringLength(2)]
public string Country
{
get
{
string value = _Country;
GetCountry(ref value);
2020-06-19 11:57:37 +02:00
return _Country = value;
2020-05-02 23:56:05 +02:00
}
2020-06-15 23:43:52 +02:00
2020-05-02 23:56:05 +02:00
set
{
string oldValue = _Country;
SetCountry(oldValue, ref value);
if (oldValue != value)
{
_Country = value;
}
}
}
2020-05-02 23:56:05 +02:00
/*************************************************************************
* Navigation properties
*************************************************************************/
[ForeignKey("Company_Studios_Id")]
public virtual ICollection<Company> Studios { get; protected set; }
}
}