forked from zelo72/mastodon-ios
14 lines
186 B
Swift
14 lines
186 B
Swift
|
//
|
||
|
// SearchItem.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK on 2022-1-18.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import MastodonSDK
|
||
|
|
||
|
enum SearchItem: Hashable {
|
||
|
case trend(Mastodon.Entity.Tag)
|
||
|
}
|