feat: Fixed errors
This commit is contained in:
11
LctMonolith/Models/UserCompetency.cs
Normal file
11
LctMonolith/Models/UserCompetency.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace LctMonolith.Models;
|
||||
|
||||
public class UserCompetency
|
||||
{
|
||||
public Guid UserId { get; set; }
|
||||
public AppUser User { get; set; } = null!;
|
||||
public Guid CompetencyId { get; set; }
|
||||
public Competency Competency { get; set; } = null!;
|
||||
public int Level { get; set; }
|
||||
public int ProgressPoints { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user