Files
doneit-web/src/app/services/Repositorys/chat/dto/room/addMemberToRoomInputDto.ts
T

9 lines
211 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(),
member: z.string(),
});
export type AddMemberToRoomInputDTO = z.infer<typeof AddMemberToRoomInputDTOSchema>