10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { z } from 'zod'
|
|
|
|
export const UserResponseSchema = z.object({
|
|
id: z.number(),
|
|
username: z.string(),
|
|
mobile: z.string(),
|
|
status: z.number(),
|
|
createdAt: z.string(),
|
|
updatedAt: z.string()
|
|
}).openapi('User') |