com.pentahohub.nexus.sms.SmsMessage Maven / Gradle / Ivy
The newest version!
package com.pentahohub.nexus.sms;
import java.io.Serializable;
import java.util.Date;
public class SmsMessage implements Serializable {
private static final long serialVersionUID = 75792L;
private String phone;
private String content;
private Date time;
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Date getTime() {
return time;
}
public void setTime(Date time) {
this.time = time;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy