Files
chapter-organizer/Core/Calculation/EventAssignmentThresholds.cs
T
2025-12-26 13:58:41 -05:00

12 lines
320 B
C#

using Core.Entities;
namespace Core.Calculation;
public class EventAssignmentThresholds
{
public EventDefinition Event { get; set; } = null!;
public int TeamCount { get; set; }
public int LowerBound { get; set; }
public int UpperBound { get; set; }
public int StudentRankingCount { get; set; }
}