Tusker/Pachyderm/Model/SearchResults.swift

22 lines
433 B
Swift
Raw Permalink Normal View History

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
public class SearchResults: Decodable {
public let accounts: [Account]
public let statuses: [Status]
2019-09-15 01:24:43 +00:00
public let hashtags: [Hashtag]
2018-09-11 14:52:21 +00:00
private enum CodingKeys: String, CodingKey {
case accounts
case statuses
case hashtags
}
}