asd
Alejandro Acuña
2024-09-16 816cb391a192e357426312ab8e591fd49d1d242e
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
package art.servers.rtzserver.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
 
public class ConfigurationDetail_Storage
{
    /**
     * JsonProperty("Storage password")<br>
     */
    @JsonProperty("Storage password")
    public String storagePassword = null;    
 
    
    /**
     * JsonProperty("Storage folder")<br>
     */
    @JsonProperty("Storage folder")
    public String storageFolder = null;    
 
    
    /**
     * JsonProperty("Storage days")<br>
     */
    @JsonProperty("Storage days") 
    public int storageDays = 0;
    
    
    /**
     * JsonProperty("Expiration days")<br>
     */
    @JsonProperty("Expiration days") 
    public int expirationDays = 0;
 
 
    
}