mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { z } from "zod"
|
|
|
|
const MessageOutPutDTOSchema = z.object({
|
|
success: z.boolean(),
|
|
message: z.string(),
|
|
data: z.any()
|
|
});
|
|
|
|
export type MessageOutPutDTO = z.infer<typeof MessageOutPutDTOSchema>
|