Files
chapter-organizer/Core/Entities/StudentEventRanking.cs
T
2025-09-22 12:53:46 -04:00

12 lines
253 B
C#

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