feat(ProfControlsTf): User Entität mit UsrId-foreign-key hinzugefügt.
- UserManager.Domain baget-package hinzugefügt
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using DigitalData.UserManager.Domain.Entities;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace WorkFlow.Domain.Entities
|
||||
@@ -59,5 +60,8 @@ namespace WorkFlow.Domain.Entities
|
||||
|
||||
[ForeignKey("MwfProfileId")]
|
||||
public Profile? MwfProfile { get; init; } = default;
|
||||
|
||||
[ForeignKey("UsrId")]
|
||||
public User? User { get; set; } = default;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user