criada a tela responsible_register_screen.dart, o model responsavel_model.dart e feitos outros ajustes
This commit is contained in:
25
lib/models/responsavel_model.dart
Normal file
25
lib/models/responsavel_model.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
class ResponsavelModel{
|
||||
String nomeAluno;
|
||||
String raAluno;
|
||||
String escola;
|
||||
String serie;
|
||||
String turma;
|
||||
String nomeResponsavel;
|
||||
String parentesco;
|
||||
String cpf;
|
||||
String senha;
|
||||
String dataCadastro;
|
||||
|
||||
ResponsavelModel({
|
||||
required this.nomeAluno,
|
||||
required this.raAluno,
|
||||
required this.escola,
|
||||
required this.serie,
|
||||
required this.turma,
|
||||
required this.nomeResponsavel,
|
||||
required this.parentesco,
|
||||
required this.cpf,
|
||||
required this.senha,
|
||||
required this.dataCadastro,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user