Files
DentalManagementMH06/packages/db/shared/schemas/enums/PatientStatus.schema.ts

5 lines
190 B
TypeScript

import * as z from 'zod';
export const PatientStatusSchema = z.enum(['ACTIVE', 'INACTIVE', 'UNKNOWN', 'PLAN_NOT_ACCEPTED'])
export type PatientStatus = z.infer<typeof PatientStatusSchema>;