import { z } from "zod";

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

type imagesTypes = z.infer<typeof imagesSchema>;
export default imagesTypes;
