Advertisement
corovino

istpost

Feb 9th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package apps.catalogo.kennyromero.catalogoapps.data;
  2.  
  3. import java.util.List;
  4.  
  5. /**
  6. * Created by kenny.romero on 08/02/2016.
  7. */
  8. public class ListaPost {
  9.  
  10. // Encapsulamiento de Posts
  11. private List<Post> items;
  12.  
  13. public ListaPost(List<Post> items) {
  14. this.items = items;
  15. }
  16.  
  17. public void setItems(List<Post> items) {
  18. this.items = items;
  19. }
  20.  
  21. public List<Post> getItems() {
  22. return items;
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement