Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package com.emlago.sociainfo.backend
  2.  
  3.  
  4. import com.emlago.sociainfo.data.helpers.BaseId
  5. import com.emlago.sociainfo.data.helpers.IdName
  6. import com.google.gson.annotations.SerializedName
  7. import com.googlecode.objectify.annotation.Load
  8. import com.googlecode.objectify.annotation.Subclass
  9. import java.io.Serializable
  10. import java.util.ArrayList
  11.  
  12. Subclass(index=true) data class IdNamesArray : BaseId(), Serializable {
  13. Load SerializedName("data")
  14. var array: List<IdName> ?= null
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement