Files
SwiftUI/Examples/GitHub Search/GitHubSearchWithSwiftUI/Model/Repository.swift
2019-06-06 11:16:28 +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
}