Added Invite, Notification and Activity

This commit is contained in:
2026-08-20 13:37:24 +02:00
parent f3c405fca2
commit 5ab977e335
33 changed files with 3259 additions and 393 deletions
@@ -0,0 +1,9 @@
namespace PostFundManagement.Domain.Entities;
[EntityTypeConfiguration<Configuration.Notification, Notification>]
public class Notification : Models.Notification
{
public virtual Organisation? Organisation { get; set; }
public virtual User? RecipientUser { get; set; }
}