Last active
October 9, 2019 04:16
-
-
Save pandulapeter/7847f6521c9b8d4939c3f9f7d17aa1a0 to your computer and use it in GitHub Desktop.
BeagleExample - list item
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
data class Account( | |
override val name: String, | |
val password: String | |
) : BeagleListItemContract | |
val testAccounts = listOf( | |
Account("User 1", "password1"), | |
Account("User 2", "password2"), | |
Account("User 3", "password3") | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment