Files
DentalManagementMHAprilgg/packages/db/shared/schemas/enums/UserScalarFieldEnum.schema.ts

5 lines
225 B
TypeScript

import * as z from 'zod';
export const UserScalarFieldEnumSchema = z.enum(['id', 'username', 'password', 'autoBackupEnabled', 'usbBackupEnabled'])
export type UserScalarFieldEnum = z.infer<typeof UserScalarFieldEnumSchema>;