Skip to content

Instantly share code, notes, and snippets.

@kbw2204
Last active March 27, 2021 13:10
Show Gist options
  • Save kbw2204/3d900ecf54d0acad63873069af1b40e7 to your computer and use it in GitHub Desktop.
Save kbw2204/3d900ecf54d0acad63873069af1b40e7 to your computer and use it in GitHub Desktop.
//
// 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