mirror of
https://github.com/yattee/yattee.git
synced 2025-01-07 18:10:33 +05:30
14 lines
252 B
Swift
14 lines
252 B
Swift
|
import Defaults
|
||
|
|
||
|
enum SearchDate: String, CaseIterable, Identifiable, DefaultsSerializable {
|
||
|
case hour, today, week, month, year
|
||
|
|
||
|
var id: SearchDate.RawValue {
|
||
|
rawValue
|
||
|
}
|
||
|
|
||
|
var name: String {
|
||
|
rawValue.capitalized
|
||
|
}
|
||
|
}
|