diff --git a/WorkFlow.Domain/Entities/ProfileObjState.cs b/WorkFlow.Domain/Entities/ProfileObjState.cs index 328ad40..09f2427 100644 --- a/WorkFlow.Domain/Entities/ProfileObjState.cs +++ b/WorkFlow.Domain/Entities/ProfileObjState.cs @@ -42,5 +42,8 @@ namespace WorkFlow.Domain.Entities [Required] [Column("ADDED_WHEN", TypeName = "datetime")] public required DateTime AddedWhen { get; init; } + + [ForeignKey("MwfProfileId")] + public Profile? Profile { get; init; } } } \ No newline at end of file