using ErsatzTV.Core.Domain; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace ErsatzTV.Infrastructure.Data.Configurations; public class FFmpegProfileConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.ToTable("FFmpegProfile"); builder.Property(p => p.NormalizeFramerate) .HasDefaultValue(false); builder.Property(p => p.DeinterlaceVideo) .HasDefaultValue(true); } }