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]
|
[Required]
|
||||||
[Column("MWF_PROFILE_ID")]
|
[Column("MWF_PROFILE_ID")]
|
||||||
public required int MwfProfileId { get; init; }
|
public required int ProfileId { get; init; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
[Column("USR_ID")]
|
[Column("USR_ID")]
|
||||||
@ -59,8 +59,8 @@ namespace WorkFlow.Domain.Entities
|
|||||||
[Column("ADDED_WHEN", TypeName = "datetime")]
|
[Column("ADDED_WHEN", TypeName = "datetime")]
|
||||||
public required DateTime AddedWhen { get; init; }
|
public required DateTime AddedWhen { get; init; }
|
||||||
|
|
||||||
[ForeignKey("MwfProfileId")]
|
[ForeignKey("ProfileId")]
|
||||||
public Profile? MwfProfile { get; init; } = default;
|
public Profile? Profile { get; init; } = default;
|
||||||
|
|
||||||
[ForeignKey("UsrId")]
|
[ForeignKey("UsrId")]
|
||||||
public User? User { get; set; } = default;
|
public User? User { get; set; } = default;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user