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

9 lines
194 B
TypeScript

import { z } from "zod/v4";
export const PaymentTermRefSchema = z.object({
id: z.uuid(),
description: z.string(),
});
export type PaymentTermRefDTO = z.infer<typeof PaymentTermRefSchema>;