aboutsummaryrefslogtreecommitdiff
path: root/juick-server/src/main/java/com/juick/server/api/activity/model/Note.java
blob: 8a34c9261a6083d74d5afcd2b1cefcb7841fc867 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.juick.server.api.activity.model;

import java.util.List;

public class Note extends ActivityObject {
    private String content;
    private String attributedTo;
    private Link attachment;
    private List<String> to;

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public String getAttributedTo() {
        return attributedTo;
    }

    public void setAttributedTo(String attributedTo) {
        this.attributedTo = attributedTo;
    }

    public Link getAttachment() {
        return attachment;
    }

    public void setAttachment(Link attachment) {
        this.attachment = attachment;
    }

    public List<String> getTo() {
        return to;
    }

    public void setTo(List<String> to) {
        this.to = to;
    }
}