| 12345678910111213141516171819202122 |
- 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<NotificationEvent>
- {
- public NotificationEventMap()
- {
- ToTable("NotificationEvent");
- HasKey(n => n.Id);
- Property(n => n.Description);
- }
- }
- }
|