import { z } from "zod";

export const clientLandlordSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  landlordId: z.number(),
  kycStatus: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type clientLandlordTypes = z.infer<typeof clientLandlordSchema>;

export default clientLandlordTypes;