29 lines
598 B
Dart
29 lines
598 B
Dart
class EstudanteModelo{
|
|
String NO_ALUNO;
|
|
String FOTO_ALUNO;
|
|
String RA_ALUNO;
|
|
String ESCOLA;
|
|
int IDADE_ALUNO;
|
|
int ANO_LETIVO;
|
|
var dados;
|
|
int nroAluno;
|
|
String cidade;
|
|
String NO_USUARIO;
|
|
String CD_USUARIO;
|
|
String URL;
|
|
|
|
EstudanteModelo({
|
|
required this.NO_ALUNO,
|
|
required this.FOTO_ALUNO,
|
|
required this.RA_ALUNO,
|
|
required this.ESCOLA,
|
|
required this.IDADE_ALUNO,
|
|
required this.ANO_LETIVO,
|
|
required this.dados,
|
|
required this.nroAluno,
|
|
required this.cidade,
|
|
required this.NO_USUARIO,
|
|
required this.CD_USUARIO,
|
|
required this.URL
|
|
});
|
|
} |