From 1df78584236ac26cdb42f9dff00a596288d25ec5 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 23 Oct 2024 10:31:34 +0200 Subject: [PATCH] refactor(ProfileObjState): Umbenennen der Eigenschaft 'Profile' in 'MwfProfile' --- WorkFlow.Domain/Entities/ProfileObjState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WorkFlow.Domain/Entities/ProfileObjState.cs b/WorkFlow.Domain/Entities/ProfileObjState.cs index b5cfb16..567f0df 100644 --- a/WorkFlow.Domain/Entities/ProfileObjState.cs +++ b/WorkFlow.Domain/Entities/ProfileObjState.cs @@ -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;