blob: f68baae5b8d80ecfa98efd4507cd1dadda3c98af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.juick.server.helpers;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by vitalyster on 25.07.2016.
*/
public class Status {
private String value;
public Status(String value) {
this.value = value;
}
@JsonProperty("status")
public String getValue() {
return value;
}
}
|