Files
chapter-organizer/Core/Entities/StudentEventRanking.cs
T

12 lines
252 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 = 6;
}