DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ModelResponse / Type.java
1
2 package json.response.ModelResponse;
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 Type {
10
11     @SerializedName("id")
12     private String mId;
13     @SerializedName("name")
14     private String mName;
15
16     public String getId() {
17         return mId;
18     }
19
20     public void setId(String id) {
21         mId = id;
22     }
23
24     public String getName() {
25         return mName;
26     }
27
28     public void setName(String name) {
29         mName = name;
30     }
31
32 }