Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. enum JSON {
  2. case String(Swift.String)
  3. case Number(Double)
  4. case Boolean(Bool)
  5. case Null
  6. indirect case array([JSON])
  7. indirect case Object([Swift.String: JSON])
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement