cloud.chain.git.api.dto.Res Maven / Gradle / Ivy
The newest version!
package cloud.chain.git.api.dto;
import lombok.Data;
import okhttp3.Response;
/**
* wuXiaoMing
* 2023/2/19 14:26
*/
@Data
public class Res {
private Response response;
public Res(Response response) {
this.response = response;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy