IceCubesApp/Packages/Models/Sources/Models/SearchResults.swift

13 lines
291 B
Swift
Raw Normal View History

2022-12-27 06:51:44 +00:00
import Foundation
public struct SearchResults: Decodable {
2022-12-27 09:04:39 +00:00
enum CodingKeys: String, CodingKey {
case accounts, statuses, hashtags
}
2023-01-17 10:36:01 +00:00
2022-12-27 06:51:44 +00:00
public let accounts: [Account]
2022-12-27 09:04:39 +00:00
public var relationships: [Relationshionship] = []
2022-12-27 06:51:44 +00:00
public let statuses: [Status]
public let hashtags: [Tag]
}