Files
rkmmobile/lib/models/city_load_model.dart

15 lines
294 B
Dart

class CityLoadModel{
int codCity;
String nameCityApi;
String nameCityFront;
String codState;
int codCityIbge;
CityLoadModel({
required this.codCity,
required this.nameCityApi,
required this.nameCityFront,
required this.codState,
required this.codCityIbge,
});
}