Added indicator entity

This commit is contained in:
2026-08-15 17:05:21 +02:00
parent c0ece569ad
commit 4879452e1e
3 changed files with 42 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace PostFundManagement.Domain.Entities;
[EntityTypeConfiguration<Configuration.Indicator, Indicator>]
public class Indicator : Models.Indicator
{
public virtual Project? Project { get; set; }
public virtual User? Creator { get; set; }
}