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

Utils.Responses.Csd.CsdResponse Maven / Gradle / Ivy

package Utils.Responses.Csd;

import Utils.Responses.IResponse;

public class CsdResponse extends IResponse {
    
    public String data;
    
    public CsdResponse(int httpStatusCode, String status, String data, String msg, String msgDetail) {
        super(httpStatusCode, status, msg, msgDetail);
        this.data = data;
    }
    public CsdResponse(int httpStatusCode, String status, String msg, String msgDetail) {
        super(httpStatusCode, status, msg, msgDetail);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy