namespace Core.Entities; public class StudentEventRanking { public Student Student { get; set; } = null!; public EventDefinition EventDefinition { get; set; } = null!; public int Rank { get; set; } public const int MaxRank = 10; }