package art.servers.configuration;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import java.util.HashMap;
|
import java.util.Map;
|
|
|
public class ConfigurationGeneral
|
{
|
@JsonProperty("Language")
|
public String language;
|
|
@JsonProperty("Executable name")
|
public String executableName = null;
|
|
@JsonProperty("Window title")
|
public String windowTitle = null;
|
|
@JsonProperty("Window icon")
|
public String windowIcon = null;
|
|
@JsonProperty("Window x")
|
public int windowX = 0;
|
|
@JsonProperty("Window y")
|
public int windowY = 0;
|
|
@JsonProperty("Window w")
|
public int windowW = 0;
|
|
@JsonProperty("Window h")
|
public int windowH = 0;
|
|
@JsonProperty("Properties")
|
public Map<String, String> mproperties = new HashMap<String, String>();
|
|
|
}
|