mirror of
https://github.com/mas-cli/mas
synced 2024-12-19 16:33:15 +00:00
13 lines
238 B
Swift
13 lines
238 B
Swift
|
//
|
||
|
// SearchResultList.swift
|
||
|
// MasKit
|
||
|
//
|
||
|
// Created by Ben Chatelain on 12/29/18.
|
||
|
// Copyright © 2018 mas-cli. All rights reserved.
|
||
|
//
|
||
|
|
||
|
struct SearchResultList: Decodable {
|
||
|
var resultCount: Int
|
||
|
var results: [SearchResult]
|
||
|
}
|