25 lines
517 B
Dart
25 lines
517 B
Dart
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,
|
|
});
|
|
} |