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 18:45:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface Sancion {
|
|
|
|
|
id_sancion: number;
|
|
|
|
|
sancion: string;
|
|
|
|
|
duracion: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface Alumno {
|
|
|
|
|
id_cuenta: number;
|
|
|
|
|
nombre: string;
|
|
|
|
|
credito: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface AlumnoSancion {
|
|
|
|
|
id_alumno_sancion: number;
|
|
|
|
|
fecha_inicio: string;
|
|
|
|
|
sancion: Sancion;
|
|
|
|
|
}
|