feat(ProfControlsTf.cs): Removed the Mwf prefix from property names.
This commit is contained in:
parent
1f4c7589d0
commit
4bcac51473
@ -14,7 +14,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")]
|
||||
@ -59,8 +59,8 @@ namespace WorkFlow.Domain.Entities
|
||||
[Column("ADDED_WHEN", TypeName = "datetime")]
|
||||
public required DateTime AddedWhen { get; init; }
|
||||
|
||||
[ForeignKey("MwfProfileId")]
|
||||
public Profile? MwfProfile { get; init; } = default;
|
||||
[ForeignKey("ProfileId")]
|
||||
public Profile? Profile { get; init; } = default;
|
||||
|
||||
[ForeignKey("UsrId")]
|
||||
public User? User { get; set; } = default;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user