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

30 lines
902 B
C#
Raw Normal View History

using System.Collections.Generic;
using Jellyfin.Data.Interfaces;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity representing a book.
/// </summary>
public class Book : LibraryItem, IHasReleases
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="Book"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <param name="library">The library.</param>
public Book(Library library) : base(library)
2020-05-02 17:56:05 -04:00
{
BookMetadata = new HashSet<BookMetadata>();
Releases = new HashSet<Release>();
}
2020-05-02 17:56:05 -04:00
/// <summary>
2021-03-17 19:08:11 -04:00
/// Gets a collection containing the metadata for this book.
2020-05-02 17:56:05 -04:00
/// </summary>
2021-03-17 19:08:11 -04:00
public virtual ICollection<BookMetadata> BookMetadata { get; private set; }
/// <inheritdoc />
2021-03-17 19:08:11 -04:00
public virtual ICollection<Release> Releases { get; private set; }
2020-05-02 17:56:05 -04:00
}
}