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

11 lines
455 B
C#

namespace GamificationService.Models.Database;
public class Skill
{
public long Id { get; set; }
public string Title { get; set; } = string.Empty;
public ICollection<MissionSkillReward> MissionSkillRewards { get; set; } = new List<MissionSkillReward>();
public ICollection<RankSkillRule> RankSkillRules { get; set; } = new List<RankSkillRule>();
public ICollection<PlayerSkill> PlayerSkills { get; set; } = new List<PlayerSkill>();
}