summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/json/JsonField.java
blob: c55a5e9367085626dd6431bf9aa0719706fd8811 (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
package cuchaz.enigma.json;

public class JsonField {
    private String obf;
    private String name;
    private String type;

    public JsonField(String obf, String name, String type) {
        this.obf = obf;
        this.name = name;
        this.type = type;
    }

    public String getObf() {
        return this.obf;
    }

    public String getName() {
        return this.name;
    }

    public String getType() {
        return this.type;
    }
}