* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
11 lines
386 B
C#
11 lines
386 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations;
|
|
|
|
public class JellyfinLibraryConfiguration : IEntityTypeConfiguration<JellyfinLibrary>
|
|
{
|
|
public void Configure(EntityTypeBuilder<JellyfinLibrary> builder) =>
|
|
builder.ToTable("JellyfinLibrary");
|
|
} |