You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tijder_SmsMatrix/app/src/main/java/eu/droogers/smsmatrix/NotSendMesage.java

24 lines
382 B

package eu.droogers.smsmatrix;
/**
* Created by gerben on 9-10-17.
*/
class NotSendMesage {
private String phone;
private String body;
public NotSendMesage(String phone, String body) {
this.phone = phone;
this.body = body;
}
public String getPhone() {
return phone;
}
public String getBody() {
return body;
}
}