Added project entity

This commit is contained in:
2026-08-15 15:51:17 +02:00
parent 3e79150590
commit d0accc5d41
4 changed files with 54 additions and 0 deletions
@@ -0,0 +1,11 @@
namespace PostFundManagement.Domain.Entities;
[EntityTypeConfiguration<Configuration.Project, Project>]
public class Project : Models.Project
{
public virtual User? Creator { get; set; }
public virtual User? Updator { get; set; }
public virtual Programme? Programme { get; set; }
}