chore: delete course response type definitions.

This commit is contained in:
JakkrapartXD 2026-01-20 14:15:51 +07:00
parent 057f640272
commit fbe0c9311f

View file

@ -1,19 +0,0 @@
import { Course, Prisma } from '@prisma/client';
// Use Prisma's CourseCreateInput for creating courses
// Response type uses Prisma's Course model
export interface listCourseResponse {
code: number;
message: string;
data: Course[];
total: number | null;
}
export interface getCourseResponse {
code: number;
message: string;
data: Course | null;
}