All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.digitaldan.harmony.config.Global Maven / Gradle / Ivy

There is a newer version: 1.1.7
Show newest version
package com.digitaldan.harmony.config;

import com.google.gson.annotations.Expose;

public class Global {
    @Expose
    private String timeStampHash;
    @Expose
    private String locale;

    public String getTimeStampHash() {
        return timeStampHash;
    }

    public void setTimeStampHash(String timeStampHash) {
        this.timeStampHash = timeStampHash;
    }

    public String getLocale() {
        return locale;
    }

    public void setLocale(String locale) {
        this.locale = locale;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy