// // Created by AUTHOR. // Copyright © YEAR AUTHOR. All rights reserved. //
import Foundation
/** Use Object Mapper */ final class VIPERDomainModel {
// Members /** required init?(_ map: Map) { } func mapping(map: Map) { username <- map["username"] age <- map["age"] weight <- map["weight"] array <- map["arr"] dictionary <- map["dict"] bestFriend <- map["best_friend"] friends <- map["friends"] birthday <- (map["birthday"], DateTransform()) } */
}