Skip to content

Instantly share code, notes, and snippets.

@pandulapeter
Last active October 9, 2019 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandulapeter/7847f6521c9b8d4939c3f9f7d17aa1a0 to your computer and use it in GitHub Desktop.
Save pandulapeter/7847f6521c9b8d4939c3f9f7d17aa1a0 to your computer and use it in GitHub Desktop.
BeagleExample - list item
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