UNPKG

@defikitdotnet/education-module-ai

Version:
11 lines (10 loc) 200 B
/** * Student model representing a user who can enroll in courses */ export interface Student { id: string; name: string; email: string; passwordHash: string; createdAt: Date; }