mirror of
https://github.com/Floriansylvain/PopCorn.git
synced 2026-08-19 11:43:23 +02:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
import { optional, string, z } from "zod";
|
|
|
|
const groupeValidation = z.object({
|
|
id : z.number().optional(),
|
|
name : z.string(),
|
|
logo : z.string(),
|
|
|
|
});
|
|
|
|
export default groupeValidation; |