import { z } from "zod";

export const occupancyReportSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  propId: z.number(),
  total: z.number(),
  occupied: z.number(),
  vacant: z.number(),
  month: z.number(),
  year: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type occupancyReportTypes = z.infer<typeof occupancyReportSchema>;

export default occupancyReportTypes;
