add interface

This commit is contained in:
Peter Maquiran
2024-06-04 09:58:04 +01:00
parent c057606852
commit e8d68c45d7
4 changed files with 24 additions and 4 deletions
@@ -0,0 +1,8 @@
import { z } from "zod";
export const AddMemberToRoomInputDTOSchema = z.object({
id: z.string(),
member: z.string(),
});
export type AddMemberToRoomInputDTO = z.infer<typeof AddMemberToRoomInputDTOSchema>