20 lines
327 B
Swift
20 lines
327 B
Swift
//
|
|
// FeedlyFeedsSearchResponse.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 1/12/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct FeedlyFeedsSearchResponse: Decodable {
|
|
|
|
struct Feed: Decodable {
|
|
let title: String
|
|
let feedId: String
|
|
}
|
|
|
|
let results: [Feed]
|
|
}
|