mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-17 22:46:42 +01:00
14 lines
251 B
Swift
Executable File
14 lines
251 B
Swift
Executable File
//
|
|
// ItemResponse.swift
|
|
// GitHubSearchWithSwiftUI
|
|
//
|
|
// Created by marty-suzuki on 2019/06/06.
|
|
// Copyright © 2019 jp.marty-suzuki. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct ItemResponse<T: Decodable>: Decodable {
|
|
let items: [T]
|
|
}
|