blob: b070355b91a338db86d2670d4f63ebcd88fbecb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package de.torui.coflsky.commands.models;
import com.google.gson.annotations.SerializedName;
public class ProxyRequest {
@SerializedName("upload")
private boolean uploadEnabled;
@SerializedName("id")
private String id;
@SerializedName("url")
private String url;
public String getId(){
return id;
}
public String getUrl(){
return url;
}
public boolean isUploadEnabled(){
return this.uploadEnabled;
}
}
|