Class UserSkill
Represents the many-to-many relationship between users and skills, indicating which skills a user possesses.
public class UserSkill
- Inheritance
-
UserSkill
- Inherited Members
Remarks
This entity establishes the association between a user and a skill, allowing users to have multiple skills and skills to be associated with multiple users. This enables skill-based matching between users and projects.
Properties
Skill
Gets or sets the skill associated with this user.
public Skill Skill { get; set; }
Property Value
- Skill
- Represents the many-to-many relationship between users and skills, indicating which skills a user possesses.
SkillId
Gets or sets the unique identifier of the skill.
public Guid SkillId { get; set; }
Property Value
- Guid
- Represents the many-to-many relationship between users and skills, indicating which skills a user possesses.
User
Gets or sets the user associated with this skill.
public User User { get; set; }
Property Value
- User
- Represents the many-to-many relationship between users and skills, indicating which skills a user possesses.
UserId
Gets or sets the unique identifier of the user.
public Guid UserId { get; set; }
Property Value
- Guid
- Represents the many-to-many relationship between users and skills, indicating which skills a user possesses.