criada a tela perfil_screen.dart
This commit is contained in:
17
lib/models/aluno_model.dart
Normal file
17
lib/models/aluno_model.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
class AlunoModel{
|
||||
String nome;
|
||||
String foto;
|
||||
String ra;
|
||||
String escola;
|
||||
int idade;
|
||||
int anoEscolar;
|
||||
|
||||
AlunoModel({
|
||||
required this.nome,
|
||||
required this.foto,
|
||||
required this.ra,
|
||||
required this.escola,
|
||||
required this.idade,
|
||||
required this.anoEscolar,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user