Uecko_ERP/modules/customer-invoices/src/common/dto/shared/payment-method-ref.dto.ts

9 lines
200 B
TypeScript
Raw Normal View History

2026-04-20 17:20:42 +00:00
import { z } from "zod/v4";
export const PaymentMethodRefSchema = z.object({
2026-04-24 18:53:05 +00:00
id: z.uuid(),
description: z.string(),
2026-04-20 17:20:42 +00:00
});
export type PaymentMethodRefDTO = z.infer<typeof PaymentMethodRefSchema>;