aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Book.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/Book.cs')
-rw-r--r--Jellyfin.Data/Entities/Book.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/Jellyfin.Data/Entities/Book.cs b/Jellyfin.Data/Entities/Book.cs
index 7dda26f41..42d24e31d 100644
--- a/Jellyfin.Data/Entities/Book.cs
+++ b/Jellyfin.Data/Entities/Book.cs
@@ -1,15 +1,9 @@
using System;
using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.ComponentModel;
-using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
-using System.Linq;
-using System.Runtime.CompilerServices;
namespace Jellyfin.Data.Entities
{
- [Table("Book")]
public partial class Book : LibraryItem
{
partial void Init();
@@ -17,7 +11,7 @@ namespace Jellyfin.Data.Entities
/// <summary>
/// Default constructor. Protected due to required properties, but present because EF needs it.
/// </summary>
- protected Book() : base()
+ protected Book()
{
BookMetadata = new HashSet<BookMetadata>();
Releases = new HashSet<Release>();