Add Blazor WebApp and rework data handling to utilize Entity Framework
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Core.Entities;
|
||||
|
||||
namespace Core.Calculation;
|
||||
|
||||
public class EventAssignmentSolution(
|
||||
Team[] teams,
|
||||
string status,
|
||||
List<EventAssignmentThresholds> assignmentThresholds)
|
||||
{
|
||||
public Team[] Teams { get; set; } = teams;
|
||||
public string Status { get; set; } = status;
|
||||
public List<EventAssignmentThresholds> AssignmentThresholds { get; } = assignmentThresholds;
|
||||
}
|
||||
Reference in New Issue
Block a user