9 lines
194 B
TypeScript
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>;
|