1
0
mirror of https://github.com/yattee/yattee.git synced 2025-01-07 18:10:33 +05:30
yattee/Model/SearchDate.swift

14 lines
252 B
Swift
Raw Normal View History

2021-07-08 04:09:18 +05:30
import Defaults
enum SearchDate: String, CaseIterable, Identifiable, DefaultsSerializable {
case hour, today, week, month, year
var id: SearchDate.RawValue {
rawValue
}
var name: String {
rawValue.capitalized
}
}