namespace LiteCharms.Entities.Configuration; public class ProductConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.ToTable(nameof(Product)); builder.HasKey(f => f.Id); builder.Property(f => f.Name).IsRequired(); builder.Property(f => f.Description).IsRequired(); builder.Property(f => f.Active).HasDefaultValue(true); } }