Use file-scoped namespace in db context

This commit is contained in:
Patrick Barron 2023-01-16 10:06:25 -05:00
parent 921618368b
commit 2a86723caf

View File

@ -8,8 +8,8 @@ using Jellyfin.Data.Entities.Security;
using Jellyfin.Data.Interfaces; using Jellyfin.Data.Interfaces;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
namespace Jellyfin.Server.Implementations namespace Jellyfin.Server.Implementations;
{
/// <inheritdoc/> /// <inheritdoc/>
public class JellyfinDb : DbContext public class JellyfinDb : DbContext
{ {
@ -158,4 +158,3 @@ namespace Jellyfin.Server.Implementations
modelBuilder.ApplyConfigurationsFromAssembly(typeof(JellyfinDb).Assembly); modelBuilder.ApplyConfigurationsFromAssembly(typeof(JellyfinDb).Assembly);
} }
} }
}