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

com.youcruit.billogram.objects.response.common.Response Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.youcruit.billogram.objects.response.common;

import com.google.gson.annotations.Expose;

public class Response {
    @Expose
    private T data;

    public T getData() {
	return data;
    }

    public void setData(T data) {
	this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy