Created
May 19, 2017 06:32
-
-
Save miquelbeltran/aed9bf1fa8ea26c5fe3178fe0996ae1b 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
| @PaperParcel | |
| data class MyValue( | |
| val id: Int, | |
| val title: String = "", | |
| val count: Int = 0, | |
| val enabled: Boolean = false | |
| ) : PaperParcelable { | |
| companion object { | |
| @JvmField val CREATOR = PaperParcelMyValue.CREATOR | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment