import { z } from "zod";

export const otpsSchema = z.object({
  id: z.number(),
  mobile: z.number(),
  otp: z.string(),
  status: z.number(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

type otpsTypes = z.infer<typeof otpsSchema>;
export default otpsTypes;
