import { z } from "zod";

export const roomImagesSchema = z.object({
  id: z.number(),
  tenantId: z.number(),
  propId: z.number(),
  roomId: z.number(),
  url: z.string(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type roomImagesTypes = z.infer<typeof roomImagesSchema>;
export default roomImagesTypes;
