ITOTEAM-597 remove atendess from list

This commit is contained in:
Peter Maquiran
2024-06-24 15:35:16 +01:00
parent ca50ae9dae
commit 93476dc5c4
18 changed files with 308 additions and 151 deletions
@@ -0,0 +1,8 @@
import { z } from "zod"
export const AttendeesRemoveInputDTOSchema = z.object({
attendees: z.array(z.string()),
})
export type AttendeesRemoveInputDTO = z.infer<typeof AttendeesRemoveInputDTOSchema>