Created
October 22, 2018 16:39
-
-
Save myeonginwoo/ea839ffdaffc72f51ee9d2df16e06e30 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
| enum class Item(val titleId: Int, val colorId: Int) { | |
| ITEM_A(R.string.a, R.color.red), | |
| ITEM_B(R.string.b, R.color.green), | |
| ITEM_C(R.string.c, R.color.blue) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment