refactor(ProfileObjState): Umbenennen der Eigenschaft 'Profile' in 'MwfProfile'

This commit is contained in:
Developer 02 2024-10-23 10:31:34 +02:00
parent cb5a6afde0
commit 1df7858423

View File

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