aboutsummaryrefslogtreecommitdiff
path: root/juick-server/src/main/java/com/juick/server/api/activity/model/Note.java
blob: ae799f5ec1acefcfb3b0cb3165d7d5cb1fa103f0 (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
package com.juick.server.api.activity.model;

public class Note extends ActivityObject {
    private String content;
    private String attributedTo;
    private Link attachment;

    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;
    }
}