Created
May 11, 2016 13:31
-
-
Save jcroot/1ae96917c7f8c6a8be782a5cbef368ef to your computer and use it in GitHub Desktop.
SmsItem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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