forked from shadowfacts/Tusker
22 lines
432 B
Swift
22 lines
432 B
Swift
//
|
|
// SearchResults.swift
|
|
// Pachyderm
|
|
//
|
|
// Created by Shadowfacts on 9/9/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class SearchResults: Decodable {
|
|
public let accounts: [Account]
|
|
public let statuses: [Status]
|
|
public let hashtags: [String]
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case accounts
|
|
case statuses
|
|
case hashtags
|
|
}
|
|
}
|