import { z } from "zod";

export const propertyLeadSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  propId: z.number(),
  leadId: z.number(),
  status: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type propertyLeadTypes = z.infer<typeof propertyLeadSchema>;
export default propertyLeadTypes;
