| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.ComponentModel.DataAnnotations; |
| | 3 | | using Jellyfin.Database.Implementations.Interfaces; |
| | 4 | |
|
| | 5 | | namespace Jellyfin.Database.Implementations.Entities.Libraries |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// An entity holding the metadata for a movie. |
| | 9 | | /// </summary> |
| | 10 | | public class MovieMetadata : ItemMetadata, IHasCompanies |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Initializes a new instance of the <see cref="MovieMetadata"/> class. |
| | 14 | | /// </summary> |
| | 15 | | /// <param name="title">The title or name of the movie.</param> |
| | 16 | | /// <param name="language">ISO-639-3 3-character language codes.</param> |
| 0 | 17 | | public MovieMetadata(string title, string language) : base(title, language) |
| | 18 | | { |
| 0 | 19 | | Studios = new HashSet<Company>(); |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Gets or sets the outline. |
| | 24 | | /// </summary> |
| | 25 | | /// <remarks> |
| | 26 | | /// Max length = 1024. |
| | 27 | | /// </remarks> |
| | 28 | | [MaxLength(1024)] |
| | 29 | | [StringLength(1024)] |
| | 30 | | public string? Outline { get; set; } |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Gets or sets the tagline. |
| | 34 | | /// </summary> |
| | 35 | | /// <remarks> |
| | 36 | | /// Max length = 1024. |
| | 37 | | /// </remarks> |
| | 38 | | [MaxLength(1024)] |
| | 39 | | [StringLength(1024)] |
| | 40 | | public string? Tagline { get; set; } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Gets or sets the plot. |
| | 44 | | /// </summary> |
| | 45 | | /// <remarks> |
| | 46 | | /// Max length = 65535. |
| | 47 | | /// </remarks> |
| | 48 | | [MaxLength(65535)] |
| | 49 | | [StringLength(65535)] |
| | 50 | | public string? Plot { get; set; } |
| | 51 | |
|
| | 52 | | /// <summary> |
| | 53 | | /// Gets or sets the country code. |
| | 54 | | /// </summary> |
| | 55 | | /// <remarks> |
| | 56 | | /// Max length = 2. |
| | 57 | | /// </remarks> |
| | 58 | | [MaxLength(2)] |
| | 59 | | [StringLength(2)] |
| | 60 | | public string? Country { get; set; } |
| | 61 | |
|
| | 62 | | /// <summary> |
| | 63 | | /// Gets the studios that produced this movie. |
| | 64 | | /// </summary> |
| | 65 | | public virtual ICollection<Company> Studios { get; private set; } |
| | 66 | |
|
| | 67 | | /// <inheritdoc /> |
| 0 | 68 | | public ICollection<Company> Companies => Studios; |
| | 69 | | } |
| | 70 | | } |