mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
12 lines
238 B
Swift
12 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]
|
|
}
|