1 package gboat2.attachment.model;
2
3 import java.util.List;
4
5
6
7
8
9
10
11
12
13
14
15
16 public class TypedAttachments implements java.io.Serializable {
17
18
19 private static final long serialVersionUID = 6795220838012310160L;
20
21 private List<AttachConfig> types;
22
23 private List<Attachment> uploadeds;
24
25 public List<AttachConfig> getTypes() {
26 return types;
27 }
28
29 public void setTypes(List<AttachConfig> types) {
30 this.types = types;
31 }
32
33 public List<Attachment> getUploadeds() {
34 return uploadeds;
35 }
36
37 public void setUploadeds(List<Attachment> uploadeds) {
38 this.uploadeds = uploadeds;
39 }
40 }