DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ModelResponse / Data.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 Data {
10
11     @SerializedName("model")
12     private Model mModel;
13
14     public Model getModel() {
15         return mModel;
16     }
17
18     public void setModel(Model model) {
19         mModel = model;
20     }
21
22 }