users.hrl 820 B

12345678910111213
  1. -record(user, {id, name, email, proplist = [{facebook, udefined},
  2. {github, "github.com/b0oh"},
  3. {local, undefined},
  4. {twitter, udefined}],
  5. string = "common",
  6. number = 12,
  7. list_of_strings = ["one", "two", "three"],
  8. list_of_numbers = [34958726345, 12],
  9. nested_proplists = [{nested, [{number, 12},
  10. {string, "common"},
  11. {list_of_strings, ["one", "two", "three"]},
  12. {list_of_atoms, [one, two, three]},
  13. {list_of_numbers, [100000, 2,3 ]}]}]}).