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.
 
 
 
 

23 lines
429 B

//
// AgreePDFDocument.swift
// GME Remit
//
// Created by InKwon James Kim on 2020/01/07.
// Copyright © 2020 Gobal Money Express Co. Ltd. All rights reserved.
//
import ObjectMapper
struct AgreePDFDocument: Mappable {
var id: String?
var name: String?
var url: String?
init?(map: Map) {}
mutating func mapping(map: Map) {
id <- map["pdfNo"]
name <- map["pdfName"]
url <- map["pdfPath"]
}
}