Last active
August 26, 2019 19:49
-
-
Save waliahimanshu/c0d29361d1dad211fb17f72df1d48bad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface AlarmWrapper { | |
fun setAlarm(alarmType: AlarmType, requestCode: String, id: String) | |
fun cancelAlarm(alarmType: AlarmType, requestCode: String, id: String) | |
} | |
enum class AlarmType { | |
TYPE1, | |
TYPE2, | |
UNKNOWN | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment