summaryrefslogtreecommitdiffstats
path: root/dcaedt_tools/src/main/java/json/templateInfo/Composition.java
blob: b99ad75ee87e65ff082a64688c6a80747d8f618c (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
29
30
31
32
package json.templateInfo;

import javax.annotation.Generated;
import com.google.gson.annotations.SerializedName;

@Generated("net.hexar.json2pojo")
@SuppressWarnings("unused")
public class Composition {

    @SerializedName("alias")
    private String Alias;
    @SerializedName("type")
    private String Type;

    public String getAlias() {
        return Alias;
    }

    public void setAlias(String alias) {
        Alias = alias;
    }

    public String getType() {
        return Type;
    }

    public void setType(String type) {
        Type = type;
    }

}