| 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 NotificationEventTypeMap : EntityTypeConfiguration<NotificationEventType>
- {
- public NotificationEventTypeMap()
- {
- ToTable("NotificationEventType");
- HasKey(n => n.Id);
- Property(n => n.Description);
- }
- }
- }
|