DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / templateInfo / Composition.java
1
2 package json.templateInfo;
3
4 import javax.annotation.Generated;
5 import com.google.gson.annotations.SerializedName;
6
7 @Generated("net.hexar.json2pojo")
8 @SuppressWarnings("unused")
9 public class Composition {
10
11     @SerializedName("alias")
12     private String Alias;
13     @SerializedName("type")
14     private String Type;
15
16     public String getAlias() {
17         return Alias;
18     }
19
20     public void setAlias(String alias) {
21         Alias = alias;
22     }
23
24     public String getType() {
25         return Type;
26     }
27
28     public void setType(String type) {
29         Type = type;
30     }
31
32 }