Caps-iOS/Caps/Data/SortCriteria.swift

29 lines
462 B
Swift
Raw Normal View History

2022-06-10 21:20:49 +02:00
import Foundation
enum SortCriteria: Int, CaseIterable {
case id = 0
case name = 1
case count = 2
case match = 3
var text: String {
switch self {
case .id:
return "Id"
case .name:
return "Name"
case .count:
return "Count"
case .match:
return "Match"
}
}
}
extension SortCriteria: Identifiable {
var id: Int {
rawValue
}
}