11 lines
395 B
C#
11 lines
395 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations;
|
|
|
|
public class PlexPathReplacementConfiguration : IEntityTypeConfiguration<PlexPathReplacement>
|
|
{
|
|
public void Configure(EntityTypeBuilder<PlexPathReplacement> builder) => builder.ToTable("PlexPathReplacement");
|
|
}
|