9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { z } from "zod/v4";
|
|
|
|
export const CusFeatureLegacyDataSchema = z.object({
|
|
prepaid_quantity: z.number(),
|
|
total_adjustment: z.number(),
|
|
});
|
|
|
|
export type CusFeatureLegacyData = z.infer<typeof CusFeatureLegacyDataSchema>;
|