Skip to content

Instantly share code, notes, and snippets.

@jcroot
Created May 11, 2016 13:31
Show Gist options
  • Save jcroot/1ae96917c7f8c6a8be782a5cbef368ef to your computer and use it in GitHub Desktop.
Save jcroot/1ae96917c7f8c6a8be782a5cbef368ef to your computer and use it in GitHub Desktop.
SmsItem
package com.arrobasoft.claxoo.entities;
/**
* Created by jadams on 07/03/2016.
*/
public class SmsItem {
int counter = 0;
int in_out;
String created_at;
String message;
public int getCounter() {
return counter;
}
public void setCounter(int counter) {
this.counter = counter;
}
public int getIn_out() {
return in_out;
}
public void setIn_out(int in_out) {
this.in_out = in_out;
}
public String getCreated_at() {
return created_at;
}
public void setCreated_at(String created_at) {
this.created_at = created_at;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment