Files
chapter-organizer/WebApp/Components/_Imports.razor
T
poprhythm 45edcf5e5f Refactor event assignment structure and introduce new models for assignment parameters and requirements
This commit removes the obsolete EventAssignment class from Core.Entities and introduces new models in Core.Models, including AssignmentParameters, AssignmentRequirement, PartialTeam, and StudentEventStatistics. The changes enhance the organization of assignment-related data and improve the overall structure of the codebase. Additionally, several files have been updated to include references to the new Core.Models namespace, ensuring consistency across the application.
2026-01-10 18:36:52 -05:00

31 lines
1.1 KiB
Plaintext

@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Authorization
@using Microsoft.AspNetCore.Components.Authorization
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using WebApp
@using WebApp.Components
@using WebApp.Components.Pages
@using WebApp.Components.Shared
@using WebApp.Components.Shared.Components
@using WebApp.Components.Shared.Layout
@using WebApp.Components.Features.Authentication
@using WebApp.Components.Features.Students
@using WebApp.Components.Features.Students.Components
@using WebApp.Components.Features.Teams
@using WebApp.Components.Features.Teams.Components
@using WebApp.Components.Features.Events
@using WebApp.Components.Features.Events.Components
@using WebApp.Components.Features.MeetingSchedule
@using WebApp.Components.Features.Calendar
@using MudBlazor
@using Core.Entities
@using Core.Models
@using Data
@using VisNetwork.Blazor