Files
DentalManagementMHAprilgg/packages/db/shared/schemas/enums/AppointmentScalarFieldEnum.schema.ts
2026-04-04 22:13:55 -04:00

5 lines
339 B
TypeScript

import * as z from 'zod';
export const AppointmentScalarFieldEnumSchema = z.enum(['id', 'patientId', 'userId', 'staffId', 'title', 'date', 'startTime', 'endTime', 'type', 'notes', 'procedureCodeNotes', 'status', 'createdAt', 'eligibilityStatus'])
export type AppointmentScalarFieldEnum = z.infer<typeof AppointmentScalarFieldEnumSchema>;