initial commit
This commit is contained in:
5
packages/db/shared/schemas/enums/PaymentMethod.schema.ts
Normal file
5
packages/db/shared/schemas/enums/PaymentMethod.schema.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import * as z from 'zod';
|
||||
|
||||
export const PaymentMethodSchema = z.enum(['EFT', 'CHECK', 'CASH', 'CARD', 'OTHER'])
|
||||
|
||||
export type PaymentMethod = z.infer<typeof PaymentMethodSchema>;
|
||||
Reference in New Issue
Block a user