Back to project page cnp.
The source code is released under:
MIT License
If you think the Android project cnp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.urucas.copynpaste.model; /*from w ww . ja v a2 s . co m*/ public class Post { private int id; private String data, fecha; public Post(int id, String data, String fecha) { this.id = id; this.data = data; this.fecha = fecha; } public int getId() { return id; } public String getData() { return data; } public String getFecha() { return fecha; } }