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