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;
|
|
|
|
}
|