training_data/apps/server/src/models/enrollment/enroll.schema.ts

12 lines
209 B
TypeScript
Executable File

import { z } from 'zod';
export const EnrollSchema = z.object({
studentId: z.string(),
postId: z.string(),
});
export const UnenrollSchema = z.object({
studentId: z.string(),
postId: z.string(),
});