Files
gamification-service/Models/Database/PlayerSkill.cs
2025-09-25 22:46:22 +03:00

12 lines
316 B
C#

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; }
}