| | 1 | | using System.Collections.Generic; |
| | 2 | | using Jellyfin.Database.Implementations.Interfaces; |
| | 3 | |
|
| | 4 | | namespace Jellyfin.Database.Implementations.Entities.Libraries |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// An entity containing metadata for a book. |
| | 8 | | /// </summary> |
| | 9 | | public class BookMetadata : ItemMetadata, IHasCompanies |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Initializes a new instance of the <see cref="BookMetadata"/> class. |
| | 13 | | /// </summary> |
| | 14 | | /// <param name="title">The title or name of the object.</param> |
| | 15 | | /// <param name="language">ISO-639-3 3-character language codes.</param> |
| 0 | 16 | | public BookMetadata(string title, string language) : base(title, language) |
| | 17 | | { |
| 0 | 18 | | Publishers = new HashSet<Company>(); |
| 0 | 19 | | } |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// Gets or sets the ISBN. |
| | 23 | | /// </summary> |
| | 24 | | public long? Isbn { get; set; } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// Gets a collection of the publishers for this book. |
| | 28 | | /// </summary> |
| | 29 | | public virtual ICollection<Company> Publishers { get; private set; } |
| | 30 | |
|
| | 31 | | /// <inheritdoc /> |
| 0 | 32 | | public ICollection<Company> Companies => Publishers; |
| | 33 | | } |
| | 34 | | } |