Project

General

Profile

1 52897 argiro.kok
package eu.dnetlib.uoaadmintools.entities;
2
3
import java.util.List;
4
5
/**
6
 * Created by argirok on 6/7/2018.
7
 */
8
public class Email {
9
    String subject;
10
    List<String> recipients;
11
    String body;
12
13
    public String getSubject() {
14
        return subject;
15
    }
16
17
    public void setSubject(String subject) {
18
        this.subject = subject;
19
    }
20
21
    public List<String> getRecipients() {
22
        return recipients;
23
    }
24
25
    public void setRecipients(List<String> recipients) {
26
        this.recipients = recipients;
27
    }
28
29
    public String getBody() {
30
        return body;
31
    }
32
33
    public void setBody(String body) {
34
        this.body = body;
35
    }
36
}