diff --git a/Jellyfin.Server.Implementations/JellyfinDb.cs b/Jellyfin.Server.Implementations/JellyfinDb.cs
index 5d3fc9e7db..064118ca54 100644
--- a/Jellyfin.Server.Implementations/JellyfinDb.cs
+++ b/Jellyfin.Server.Implementations/JellyfinDb.cs
@@ -1,5 +1,3 @@
-#pragma warning disable CS1591
-
using System;
using System.Linq;
using Jellyfin.Data.Entities;
@@ -20,28 +18,64 @@ public class JellyfinDb : DbContext
{
}
+ ///
+ /// Gets the containing the access schedules.
+ ///
public DbSet AccessSchedules => Set();
+ ///
+ /// Gets the containing the activity logs.
+ ///
public DbSet ActivityLogs => Set();
+ ///
+ /// Gets the containing the API keys.
+ ///
public DbSet ApiKeys => Set();
+ ///
+ /// Gets the containing the devices.
+ ///
public DbSet Devices => Set();
+ ///
+ /// Gets the containing the device options.
+ ///
public DbSet DeviceOptions => Set();
+ ///
+ /// Gets the containing the display preferences.
+ ///
public DbSet DisplayPreferences => Set();
+ ///
+ /// Gets the containing the image infos.
+ ///
public DbSet ImageInfos => Set();
+ ///
+ /// Gets the containing the item display preferences.
+ ///
public DbSet ItemDisplayPreferences => Set();
+ ///
+ /// Gets the containing the custom item display preferences.
+ ///
public DbSet CustomItemDisplayPreferences => Set();
+ ///
+ /// Gets the containing the permissions.
+ ///
public DbSet Permissions => Set();
+ ///
+ /// Gets the containing the preferences.
+ ///
public DbSet Preferences => Set();
+ ///
+ /// Gets the containing the users.
+ ///
public DbSet Users => Set();
/*public DbSet Artwork => Set();