Last active
March 27, 2021 13:10
-
-
Save kbw2204/3d900ecf54d0acad63873069af1b40e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Repo.swift | |
// GithubSearch_VIPER | |
// | |
// Created by 융융 on 2021/02/28. | |
// | |
import Foundation | |
import ObjectMapper | |
struct Repo { | |
// 가져오고 싶으 값만 넣어봤습니당 | |
var fullName = "" | |
var description = "" | |
var htmlUrl = "" | |
} | |
extension Repo: Mappable { | |
init?(map: Map) { } | |
mutating func mapping(map: Map) { | |
self.fullName <- map["full_name"] | |
self.description <- map["description"] | |
self.htmlUrl <- map["html_url"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment