feat(ProfileObjState): State Entität mit StateId-foreign-key hinzugefügt.

This commit is contained in:
Developer 02 2024-10-23 10:26:50 +02:00
parent d4d6c29225
commit cb5a6afde0

View File

@ -44,6 +44,9 @@ namespace WorkFlow.Domain.Entities
public required DateTime AddedWhen { get; init; }
[ForeignKey("MwfProfileId")]
public Profile? Profile { get; init; }
public Profile? Profile { get; init; } = null;
[ForeignKey("StateId")]
public WfState? State { get; init; } = null;
}
}