2
0
Files
2024-08-09 00:39:27 +02:00

8 lines
163 B
TypeScript

import { z } from "zod";
export const ZAdminDeleteInput = z.object({
orgId: z.number(),
});
export type TAdminDeleteInput = z.infer<typeof ZAdminDeleteInput>;