feat(ProfileObjState.cs): Mwf-Präfix entfernt
This commit is contained in:
parent
c76f9d1709
commit
e1ec8c581c
@ -13,7 +13,7 @@ namespace WorkFlow.Domain.Entities
|
||||
|
||||
[Required]
|
||||
[Column("MWF_PROFILE_ID")]
|
||||
public required int MwfProfileId { get; init; }
|
||||
public required int ProfileId { get; init; }
|
||||
|
||||
[Required]
|
||||
[Column("USR_ID")]
|
||||
@ -44,8 +44,8 @@ namespace WorkFlow.Domain.Entities
|
||||
[Column("ADDED_WHEN", TypeName = "datetime")]
|
||||
public required DateTime AddedWhen { get; init; }
|
||||
|
||||
[ForeignKey("MwfProfileId")]
|
||||
public Profile? MwfProfile { get; init; } = null;
|
||||
[ForeignKey("ProfileId")]
|
||||
public Profile? Profile { get; init; } = null;
|
||||
|
||||
[ForeignKey("StateId")]
|
||||
public WfState? State { get; init; } = null;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user