Added outcome entity

This commit is contained in:
2026-08-15 17:38:26 +02:00
parent ba10780ab3
commit 2e4dbd5f7d
3 changed files with 39 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace PostFundManagement.Domain.Entities;
[EntityTypeConfiguration<Configuration.Outcome, Outcome>]
public class Outcome : Models.Outcome
{
public virtual Beneficiary? Beneficiary { get; set; }
public virtual User? Creator { get; set; }
}