mirror of
https://github.com/Floriansylvain/PopCorn.git
synced 2026-08-19 19:53:24 +02:00
13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
import { optional, string, z } from "zod";
|
|
|
|
const jeuxValidation = z.object({
|
|
id : z.number().optional(),
|
|
Title : z.string(),
|
|
Description : z.string(),
|
|
Picture: z.string(),
|
|
lien : z.string(),
|
|
groupe_id : z.number()
|
|
|
|
});
|
|
|
|
export default jeuxValidation; |