* wip * wip * implement watermark settings * code cleanup * update changelog
12 lines
401 B
C#
12 lines
401 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations
|
|
{
|
|
public class ChannelWatermarkConfiguration : IEntityTypeConfiguration<ChannelWatermark>
|
|
{
|
|
public void Configure(EntityTypeBuilder<ChannelWatermark> builder) => builder.ToTable("ChannelWatermark");
|
|
}
|
|
}
|