Files
doneit-web/src/app/module/chat/data/dto/room/addMemberToRoomInputDto.ts
T

9 lines
221 B
TypeScript
Raw Normal View History

2024-06-04 09:58:04 +01:00
import { z } from "zod";
export const AddMemberToRoomInputDTOSchema = z.object({
id: z.string(),
2024-06-10 16:34:43 +01:00
members: z.array(z.number()),
2024-06-04 09:58:04 +01:00
});
export type AddMemberToRoomInputDTO = z.infer<typeof AddMemberToRoomInputDTOSchema>