Uecko_ERP/modules/customer-invoices/src/common/dto/shared/tax-regime-ref.dto.ts

9 lines
192 B
TypeScript
Raw Normal View History

2026-06-05 14:49:35 +00:00
import { z } from "zod/v4";
export const TaxRegimeRefSchema = z.object({
code: z.string(),
description: z.string(),
});
export type TaxRegimeRefDTO = z.infer<typeof TaxRegimeRefSchema>;