mirror of
https://github.com/yattee/yattee.git
synced 2025-01-08 22:07:10 +00:00
14 lines
241 B
Swift
14 lines
241 B
Swift
|
import Defaults
|
||
|
|
||
|
enum SearchDuration: String, CaseIterable, Identifiable, DefaultsSerializable {
|
||
|
case short, long
|
||
|
|
||
|
var id: SearchDuration.RawValue {
|
||
|
rawValue
|
||
|
}
|
||
|
|
||
|
var name: String {
|
||
|
rawValue.capitalized
|
||
|
}
|
||
|
}
|