novo projeto
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 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user