import { z } from "zod";

export const moveInSchema = z.object({
  id: z.number(),
  occupancyId: z.number(),
  tenantId: z.number(),
  roomId: z.number(),
  propId: z.number(),
  typeId: z.number(),
  clientId: z.number(),
  comment: z.string(),
  status: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type moveInTypes = z.infer<typeof moveInSchema>;
export default moveInTypes;
