mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
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
|
|
}
|
|
}
|