mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import { z } from "zod";
|
|
|
|
export const AddMemberToRoomInputDTOSchema = z.object({
|
|
id: z.string(),
|
|
members: z.array(z.number()),
|
|
});
|
|
|
|
export type AddMemberToRoomInputDTO = z.infer<typeof AddMemberToRoomInputDTOSchema>
|