mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
import { z } from "zod";
|
|
|
|
const Bodyschema = z.object({
|
|
SerialNumber: z.string(),
|
|
DispatchDocId: z.number(),
|
|
FolderID: z.any(),
|
|
Subject: z.string(),
|
|
Comment: z.string().optional(),
|
|
DelegatedUserEmail: z.string().email(),
|
|
UserId: z.any(),
|
|
DraftIds: z.string(),
|
|
})
|