import { CourseLevel, CoursePublishedStatus } from "@/lib/types/courses";

export interface ProfileCoursesItem {
	duration: string;
	level: CourseLevel;
	price: string;
	isPublished: boolean;
	discountPrice: string;
	description: string;
	id: number;
	title: string;
	ratingAvg: string;
	ratingCount: number;
	lessonsCount: number;
	courseImage: string;
	courseVideo: string;
	publishStatus: CoursePublishedStatus;
}

export interface ProfileTrainer {
	gender: any;
	phone: any;
	name: string;
	id: number;
	email: string;
}

export interface GetTrainerProfileResponse {
	courses: ProfileCoursesItem[];
	trainer: ProfileTrainer;
}

