Advertisement
Guest User

Untitled

a guest
Jul 14th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.62 KB | None | 0 0
  1. arrayListOf(
  2.             QuestionInfo(
  3.                     id = "a",
  4.                     type = "question",
  5.                     option1 = "b",
  6.                     option2 = "c",
  7.                     content = QuestionInfoContent(
  8.                             text = "Is the person conscious?"
  9.                     )
  10.             ),
  11.             QuestionInfo(
  12.                     id = "b",
  13.                     type = "question",
  14.                     option1 = "d",
  15.                     option2 = "e",
  16.                     content = QuestionInfoContent(
  17.                             text = "Is the person breathing?"
  18.                     )
  19.             ),
  20.             QuestionInfo(
  21.                     id = "c",
  22.                     type = "question",
  23.                     option1 = "a",
  24.                     option2 = "b",
  25.                     content = QuestionInfoContent(
  26.                             text = "Is the person retarded?"
  27.                     )
  28.             ),
  29.             QuestionInfo(
  30.                     id = "d",
  31.                     type = "question",
  32.                     option1 = "a",
  33.                     option2 = "b",
  34.                     content = QuestionInfoContent(
  35.                             text = "Is the person's heart still beating?"
  36.                     )
  37.             ),
  38.             QuestionInfo(
  39.                     id = "e",
  40.                     type = "question",
  41.                     option1 = "c",
  42.                     option2 = "d",
  43.                     content = QuestionInfoContent(
  44.                             text = "Is the person Richer Archambault?"
  45.                     )
  46.             )
  47.     )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement