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