Created
January 20, 2017 14:08
-
-
Save pawegio/52a569027e53742beefccb684ae57e3c 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 Report { | |
abstract val uuid: String | |
abstract val date: String | |
} | |
data class HourlyReport( | |
override val uuid: String, | |
override val date: String, | |
val hours: Int) : Report() | |
data class DailyReport( | |
override val uuid: String, | |
override val date: String) : Report() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment