package kr.wisestone.owl.monitor;
|
|
/**
|
* Created by wisestone on 2018-02-09.
|
*/
|
public class EmailAttachment {
|
public String name;
|
public String path;
|
public Long size;
|
|
public EmailAttachment(){}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public Long getSize() {
|
return size;
|
}
|
|
public void setSize(Long size) {
|
this.size = size;
|
}
|
}
|