Files
chapter-organizer/Core/Calculation/EventAssignmentThresholds.cs
T

12 lines
311 B
C#

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