Created
August 2, 2020 18:46
-
-
Save sandeshbodake/78cfe483dbaa2c4c5a3d406fefc68fdd to your computer and use it in GitHub Desktop.
This file contains hidden or 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
sealed class WHBState { | |
object Work: WHBState() | |
object Home: WHBState() | |
object Bed: WHBState() | |
} | |
sealed class WHBEvent { | |
object TakeTrain: WHBEvent() | |
object Sleep: WHBEvent() | |
object Wake: WHBEvent() | |
} | |
sealed class WHBSideEffect { | |
object LogTakeTrainTime: WHBSideEffect() | |
object LogSleepTime: WHBSideEffect() | |
object LogWakeTime: WHBSideEffect() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment