// // ValidateReferralCodeModel.swift // GME Remit // // Created by hehehaha on 15/09/2022. // Copyright © 2022 Gobal Money Express Co. Ltd. All rights reserved. // import Foundation import ObjectMapper struct ValidateReferralCodeModel: Mappable { var errorCode: String? var msg: String? var id: String? init?(map: Map) { } mutating func mapping(map: Map) { errorCode <- map["ErrorCode"] msg <- map["Msg"] id <- map["Id"] } }