using System; using System.Collections.Generic; using System.Data.Entity.ModelConfiguration; using System.Linq; using System.Text; using System.Threading.Tasks; using GreenTree.Nachtragsmanagement.Core.Domain.Misc; namespace GreenTree.Nachtragsmanagement.Data.Mapping.Misc { public class NotificationEventMap : EntityTypeConfiguration { public NotificationEventMap() { ToTable("NotificationEvent"); HasKey(n => n.Id); Property(n => n.Description); } } }