Uecko_ERP/modules/customer-invoices/src/common/dto/shared/item-taxes-breakdown.dto.ts
2026-04-20 19:20:42 +02:00

7 lines
237 B
TypeScript

import type { z } from "zod/v4";
import { TaxesBreakdownSchema } from "./taxes-breakdown.dto";
export const ItemTaxesBreakdownSchema = TaxesBreakdownSchema;
export type ItemTaxesBreakdownDTO = z.infer<typeof ItemTaxesBreakdownSchema>;