* start to rework plex collection scanning * sync plex collections to db * sync plex collection items * update changelog
11 lines
375 B
C#
11 lines
375 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations;
|
|
|
|
public class PlexCollectionConfiguration : IEntityTypeConfiguration<PlexCollection>
|
|
{
|
|
public void Configure(EntityTypeBuilder<PlexCollection> builder) => builder.ToTable("PlexCollection");
|
|
}
|