Uecko_ERP/modules/customer-invoices/src/common/dto/shared/tax-regime-ref.dto.ts
2026-06-05 16:49:35 +02:00

9 lines
192 B
TypeScript

import { z } from "zod/v4";
export const TaxRegimeRefSchema = z.object({
code: z.string(),
description: z.string(),
});
export type TaxRegimeRefDTO = z.infer<typeof TaxRegimeRefSchema>;