passforios/passKit/Helpers/SearchBarScope.swift

26 lines
472 B
Swift
Raw Normal View History

//
// SearchBarScope.swift
2021-08-28 07:32:31 +02:00
// passKit
//
// Created by Danny Moesch on 05.03.19.
// Copyright © 2019 Bob Sun. All rights reserved.
//
2019-05-01 18:28:22 +02:00
import SwiftyUserDefaults
public enum SearchBarScope: Int {
case current
case all
2019-05-01 18:28:22 +02:00
public var localizedName: String {
switch self {
case .current:
return "Current".localize()
case .all:
return "All".localize()
}
}
}
extension SearchBarScope: CaseIterable {}