17 lines
289 B
Dart
17 lines
289 B
Dart
class AlunoModel{
|
|
String nome;
|
|
String data_nasc;
|
|
String ra;
|
|
String escola;
|
|
String serie;
|
|
String turma;
|
|
|
|
AlunoModel({
|
|
required this.nome,
|
|
required this.data_nasc,
|
|
required this.ra,
|
|
required this.escola,
|
|
required this.serie,
|
|
required this.turma,
|
|
});
|
|
} |