aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Libraries/BookMetadata.cs
blob: 4a3d290f014ee05a053d8f29e675bd02f9e2ee46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#pragma warning disable CA2227

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Jellyfin.Data.Interfaces;

namespace Jellyfin.Data.Entities.Libraries
{
    /// <summary>
    /// An entity containing metadata for a book.
    /// </summary>
    public class BookMetadata : ItemMetadata, IHasCompanies
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="BookMetadata"/> class.
        /// </summary>
        /// <param name="title">The title or name of the object.</param>
        /// <param name="language">ISO-639-3 3-character language codes.</param>
        /// <param name="book">The book.</param>
        public BookMetadata(string title, string language, Book book) : base(title, language)
        {
            if (book == null)
            {
                throw new ArgumentNullException(nameof(book));
            }

            book.BookMetadata.Add(this);

            Publishers = new HashSet<Company>();
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="BookMetadata"/> class.
        /// </summary>
        /// <remarks>
        /// Default constructor. Protected due to required properties, but present because EF needs it.
        /// </remarks>
        protected BookMetadata()
        {
        }

        /// <summary>
        /// Gets or sets the ISBN.
        /// </summary>
        public long? Isbn { get; set; }

        /// <summary>
        /// Gets or sets a collection of the publishers for this book.
        /// </summary>
        public virtual ICollection<Company> Publishers { get; protected set; }

        /// <inheritdoc />
        [NotMapped]
        public ICollection<Company> Companies => Publishers;
    }
}