summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/groupsindexer/model/Reference.java
blob: 84dcc1545a2643b2800f5b431355e96f3c88c895 (plain)
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
package com.p4square.groupsindexer.model;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Reference {

    @JsonProperty("id")
    private String id;

    @JsonProperty("label")
    private String label;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }
}