2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
2020-08-29 17:30:09 +00:00
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An entity containing metadata for an <see cref="Episode"/>.
|
|
|
|
/// </summary>
|
|
|
|
public class EpisodeMetadata : Metadata
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="EpisodeMetadata"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-06-19 10:21:49 +00:00
|
|
|
/// <param name="title">The title or name of the object.</param>
|
|
|
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <param name="episode">The episode.</param>
|
|
|
|
public EpisodeMetadata(string title, string language, Episode episode) : base(title, language)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
if (episode == null)
|
2020-06-20 08:35:29 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
throw new ArgumentNullException(nameof(episode));
|
2020-06-20 08:35:29 +00:00
|
|
|
}
|
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
episode.EpisodeMetadata.Add(this);
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="EpisodeMetadata"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
|
|
|
/// </remarks>
|
|
|
|
protected EpisodeMetadata()
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the outline.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 1024.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(1024)]
|
|
|
|
[StringLength(1024)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public string Outline { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the plot.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 65535.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(65535)]
|
|
|
|
[StringLength(65535)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public string Plot { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the tagline.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 1024.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(1024)]
|
|
|
|
[StringLength(1024)]
|
2020-08-30 22:50:54 +00:00
|
|
|
public string Tagline { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|