{ "list": [ { "age" : 18, "name": "Json", }, ... ] }
class Person: Mappable { var age: Int? var name: String? .... }
I don't want to create another model. ```
I want: let people = Person
let people = Mapper<Person>().mapArray(JSONObject: json["list"])
Most helpful comment