Added beneficiary entity

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