This commit is contained in:
2025-01-01 14:25:33 +01:00
parent a7e961fc0c
commit f5332411d2
3 changed files with 29 additions and 17 deletions

View File

@@ -31,15 +31,15 @@ export interface CreateEvent {
}
export interface UpdateEvent {
name?: string;
start?: Dayjs;
end?: Dayjs;
deadline?: Dayjs;
maxTeamMembers?: number;
schemType?: string | null;
publicSchemsOnly?: boolean;
addReferee?: string[];
removeReferee?: string[];
name: string | null;
start: Dayjs | null;
end: Dayjs | null;
deadline: Dayjs | null;
maxTeamMembers: number | null;
schemType: string | null;
publicSchemsOnly: boolean | null;
addReferee: string[] | null;
removeReferee: string[] | null;
}
export class EventRepo {