2018-09-11 14:52:21 +00:00
|
|
|
//
|
|
|
|
// SearchResults.swift
|
|
|
|
// Pachyderm
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 9/9/18.
|
|
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2018-09-17 23:22:37 +00:00
|
|
|
public class SearchResults: Decodable {
|
|
|
|
public let accounts: [Account]
|
|
|
|
public let statuses: [Status]
|
2018-09-11 14:52:21 +00:00
|
|
|
public let hashtags: [String]
|
|
|
|
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
|
|
case accounts
|
|
|
|
case statuses
|
|
|
|
case hashtags
|
|
|
|
}
|
|
|
|
}
|