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

71 lines
2.0 KiB
C#
Raw Normal View History

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Jellyfin.Data.Interfaces;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity holding the metadata for a movie.
/// </summary>
2020-09-01 11:38:09 -04:00
public class MovieMetadata : ItemMetadata, IHasCompanies
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="MovieMetadata"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="title">The title or name of the movie.</param>
2020-06-19 06:21:49 -04:00
/// <param name="language">ISO-639-3 3-character language codes.</param>
public MovieMetadata(string title, string language) : base(title, language)
2020-05-02 17:56:05 -04:00
{
Studios = new HashSet<Company>();
2020-05-02 17:56:05 -04:00
}
/// <summary>
/// Gets or sets the outline.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(1024)]
[StringLength(1024)]
public string? Outline { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the tagline.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(1024)]
[StringLength(1024)]
public string? Tagline { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the plot.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 65535.
/// </remarks>
[MaxLength(65535)]
[StringLength(65535)]
public string? Plot { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the country code.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 2.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(2)]
[StringLength(2)]
public string? Country { get; set; }
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets the studios that produced this movie.
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<Company> Studios { get; private set; }
/// <inheritdoc />
public ICollection<Company> Companies => Studios;
2020-05-02 17:56:05 -04:00
}
}