13 lines
307 B
C#
13 lines
307 B
C#
namespace Core.Entities;
|
|
|
|
public class EventStudentPicks
|
|
{
|
|
public CompetitiveEvent Event { get; }
|
|
public IList<Tuple<Student,int>> StudentPicks { get; }
|
|
|
|
public EventStudentPicks(CompetitiveEvent @event, IList<Tuple<Student, int>> studentPicks)
|
|
{
|
|
Event = @event;
|
|
StudentPicks = studentPicks;
|
|
}
|
|
} |