8 lines
109 B
Swift
8 lines
109 B
Swift
import Foundation
|
|
|
|
public enum ReminderTime: Equatable {
|
|
case tonight
|
|
case tomorrow
|
|
case thisWeekend
|
|
}
|