ajuste no register_citizen_screen.dart para a sincronização
This commit is contained in:
10
lib/models/type_breed_model.dart
Normal file
10
lib/models/type_breed_model.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class TypeBreedModel{
|
||||
int cod;
|
||||
String title;
|
||||
|
||||
TypeBreedModel({
|
||||
required this.cod,
|
||||
required this.title
|
||||
});
|
||||
}
|
||||
|
||||
10
lib/models/type_certificate_model.dart
Normal file
10
lib/models/type_certificate_model.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class TypeCertificateModel{
|
||||
int cod;
|
||||
String title;
|
||||
|
||||
TypeCertificateModel({
|
||||
required this.cod,
|
||||
required this.title
|
||||
});
|
||||
}
|
||||
|
||||
10
lib/models/type_dificiency_model.dart
Normal file
10
lib/models/type_dificiency_model.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class TypeDeficiencyModel{
|
||||
int cod;
|
||||
String title;
|
||||
|
||||
TypeDeficiencyModel({
|
||||
required this.cod,
|
||||
required this.title
|
||||
});
|
||||
}
|
||||
|
||||
10
lib/models/type_marital_model.dart
Normal file
10
lib/models/type_marital_model.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class TypeMaritalModel{
|
||||
int cod;
|
||||
String title;
|
||||
|
||||
TypeMaritalModel({
|
||||
required this.cod,
|
||||
required this.title
|
||||
});
|
||||
}
|
||||
|
||||
10
lib/models/type_scooling_model.dart
Normal file
10
lib/models/type_scooling_model.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class TypeScoolingModel{
|
||||
int cod;
|
||||
String title;
|
||||
|
||||
TypeScoolingModel({
|
||||
required this.cod,
|
||||
required this.title
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user