All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sendsafely.Message Maven / Gradle / Ivy

package com.sendsafely;

import java.util.Date;
import java.util.List;

public class Message {

	private String message;
	private Date sent;
	private String sentBy;
	
	public String getMessage() {
		return message;
	}
	public void setMessage(String message) {
		this.message = message;
	}
	public Date getSent() {
		return sent;
	}
	public void setSent(Date sent) {
		this.sent = sent;
	}
	public String getSentBy() {
		return sentBy;
	}
	public void setSentBy(String sentBy) {
		this.sentBy = sentBy;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy