25 lines
447 B
Dart
25 lines
447 B
Dart
class AlunoModel{
|
|
String nome;
|
|
String data_nasc;
|
|
String ra;
|
|
String escola;
|
|
String serie;
|
|
String turma;
|
|
String cidade;
|
|
String login;
|
|
String URL;
|
|
var dados;
|
|
|
|
AlunoModel({
|
|
required this.nome,
|
|
required this.data_nasc,
|
|
required this.ra,
|
|
required this.escola,
|
|
required this.serie,
|
|
required this.turma,
|
|
required this.dados,
|
|
required this.cidade,
|
|
required this.login,
|
|
required this.URL
|
|
});
|
|
} |