ajuste no register_citizen_screen.dart para a sincronização

This commit is contained in:
Reginaldo
2023-04-18 20:19:22 -03:00
parent ac5b55c195
commit 9ea45caab6
11 changed files with 605 additions and 140 deletions

View File

@@ -0,0 +1,10 @@
class TypeBreedModel{
int cod;
String title;
TypeBreedModel({
required this.cod,
required this.title
});
}

View File

@@ -0,0 +1,10 @@
class TypeCertificateModel{
int cod;
String title;
TypeCertificateModel({
required this.cod,
required this.title
});
}

View File

@@ -0,0 +1,10 @@
class TypeDeficiencyModel{
int cod;
String title;
TypeDeficiencyModel({
required this.cod,
required this.title
});
}

View File

@@ -0,0 +1,10 @@
class TypeMaritalModel{
int cod;
String title;
TypeMaritalModel({
required this.cod,
required this.title
});
}

View File

@@ -0,0 +1,10 @@
class TypeScoolingModel{
int cod;
String title;
TypeScoolingModel({
required this.cod,
required this.title
});
}