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