forked from shadowfacts/Tusker
16 lines
261 B
Swift
16 lines
261 B
Swift
//
|
|
// SearchResultType.swift
|
|
// Pachyderm
|
|
//
|
|
// Created by Shadowfacts on 10/11/20.
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum SearchResultType: String {
|
|
case accounts
|
|
case hashtags
|
|
case statuses
|
|
}
|