Files
ersatztv/ErsatzTV.Infrastructure/Data/Configurations/Collection/EmbyCollectionConfiguration.cs
T
Jason DoveandGitHub d67251bfa0 jellyfin and emby collection sync (#752)
* sync jellyfin and emby collections

* update changelog
2022-04-22 13:33:35 -05: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 EmbyCollectionConfiguration : IEntityTypeConfiguration<EmbyCollection>
{
public void Configure(EntityTypeBuilder<EmbyCollection> builder) => builder.ToTable("EmbyCollection");
}