import { z } from "zod";

export const stampPapersSchema = z.object({
  id: z.number(),
  clientId: z.number(),
  propId: z.number(),
  tenantId: z.number(),
  tenantName: z.string(),
  url: z.string(),
  status: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type stampPapersTypes = z.infer<typeof stampPapersSchema>;
export default stampPapersTypes;