Files
DentalManagementMH05/packages/db/shared/schemas/objects/AppointmentFileWhereUniqueInput.schema.ts

10 lines
432 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
const makeSchema = () => z.object({
id: z.number().int().optional()
}).strict();
export const AppointmentFileWhereUniqueInputObjectSchema: z.ZodType<Prisma.AppointmentFileWhereUniqueInput> = makeSchema() as unknown as z.ZodType<Prisma.AppointmentFileWhereUniqueInput>;
export const AppointmentFileWhereUniqueInputObjectZodSchema = makeSchema();