19 lines
371 B
Dart
19 lines
371 B
Dart
class ResponsavelModel{
|
|
String CD_ALUNO;
|
|
String NOME;
|
|
String PARENTESCO;
|
|
String CPF;
|
|
String SENHA;
|
|
String DATA_CADASTRO;
|
|
String CONDICAO;
|
|
|
|
ResponsavelModel({
|
|
required this.CD_ALUNO,
|
|
required this.NOME,
|
|
required this.PARENTESCO,
|
|
required this.CPF,
|
|
required this.SENHA,
|
|
required this.DATA_CADASTRO,
|
|
required this.CONDICAO
|
|
});
|
|
} |