Files
ersatztv/ErsatzTV.Infrastructure/Data/Configurations/Collection/PlexCollectionConfiguration.cs
T
Jason DoveandGitHub b95a89b11f plex collection rework (#1503)
* start to rework plex collection scanning

* sync plex collections to db

* sync plex collection items

* update changelog
2023-11-14 10:41:21 -06:00

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");
}