as
Alejandro Acuña
2025-01-21 61cdfc6ee7f013c4533add51d797c1886b312883
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
28
29
30
31
32
33
34
35
36
37
38
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>();
        
    
}