feat: db models
This commit is contained in:
11
Models/Database/PlayerSkill.cs
Normal file
11
Models/Database/PlayerSkill.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace GamificationService.Models.Database;
|
||||
|
||||
public class PlayerSkill
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long PlayerId { get; set; }
|
||||
public Player Player { get; set; } = null!;
|
||||
public long SkillId { get; set; }
|
||||
public Skill Skill { get; set; } = null!;
|
||||
public int Score { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user