You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
500 B

//
// 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"]
}
}