Files
SwiftUI/Other Projects/GitHub Search/GitHubSearchWithSwiftUI/Model/Repository.swift
Ivan Vorobei 48001a8e9a Update
2019-06-26 22:12:35 +03:00

18 lines
334 B
Swift
Executable File

//
// Repository.swift
// GitHubSearchWithSwiftUI
//
// Created by marty-suzuki on 2019/06/05.
// Copyright © 2019 jp.marty-suzuki. All rights reserved.
//
import Foundation
struct Repository: Decodable {
let id: Int
let fullName: String
let description: String?
let stargazersCount: Int
let htmlUrl: URL
}