Add assigment of crew to events and shifts

This commit is contained in:
Hornwitser 2025-03-15 18:18:08 +01:00
parent 0aff9cc94a
commit cef6b13dd1
7 changed files with 153 additions and 3 deletions

View file

@ -20,6 +20,7 @@ export interface TimeSlot {
start: string,
end: string,
locations: string[],
assigned?: number[],
interested?: number,
}
@ -41,6 +42,7 @@ export interface ShiftSlot {
id: string,
start: string,
end: string,
assigned?: number[],
}
export interface Schedule {