namespace GamificationService.Models.Database; public class Rank { public long Id { get; set; } public string Title { get; set; } = string.Empty; public int ExpNeeded { get; set; } public ICollection Players { get; set; } = new List(); public ICollection MissionRankRules { get; set; } = new List(); public ICollection RankMissionRules { get; set; } = new List(); public ICollection RankSkillRules { get; set; } = new List(); }