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

5 lines
169 B
TypeScript

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