Files
front-AT/app/types/student.ts
T

10 lines
141 B
TypeScript
Raw Normal View History

2025-10-02 01:41:41 -06:00
interface Carrera {
carrera: string;
}
interface Student {
id_cuenta: number;
nombre: string;
carrera: Carrera;
credito: number;
2026-02-16 19:22:34 -06:00
}