jellyfin/Jellyfin.Data/Entities/Libraries/SeasonMetadata.cs

48 lines
1.4 KiB
C#
Raw Normal View History

using System;
using System.ComponentModel.DataAnnotations;
2020-08-29 19:30:09 +02:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity that holds metadata for seasons.
/// </summary>
2020-09-01 17:38:09 +02:00
public class SeasonMetadata : ItemMetadata
2020-05-02 23:56:05 +02:00
{
/// <summary>
/// Initializes a new instance of the <see cref="SeasonMetadata"/> class.
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>
/// <param name="season">The season.</param>
public SeasonMetadata(string title, string language, Season season) : base(title, language)
2020-05-02 23:56:05 +02:00
{
if (season == null)
2020-06-20 10:35:29 +02:00
{
throw new ArgumentNullException(nameof(season));
2020-06-20 10:35:29 +02:00
}
2020-05-02 23:56:05 +02:00
season.SeasonMetadata.Add(this);
2020-05-02 23:56:05 +02:00
}
/// <summary>
/// Initializes a new instance of the <see cref="SeasonMetadata"/> class.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </remarks>
protected SeasonMetadata()
2020-05-02 23:56:05 +02:00
{
}
/// <summary>
/// Gets or sets the outline.
2020-05-02 23:56:05 +02:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 23:56:05 +02:00
[MaxLength(1024)]
[StringLength(1024)]
public string Outline { get; set; }
2020-05-02 23:56:05 +02:00
}
}