mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-16 05:56:40 +01:00
18 lines
334 B
Swift
Executable File
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
|
|
}
|