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

com.github.saiprasadkrishnamurthy.databindings.model.DataBindingsGenerationResponse Maven / Gradle / Ivy

The newest version!
package com.github.saiprasadkrishnamurthy.databindings.model;

import lombok.Data;

import java.util.ArrayList;
import java.util.List;

/**
 * Response modelling the generation of the bindings.
 *
 * @author Sai.
 */
@Data
public class DataBindingsGenerationResponse {
    private String outputDir;
    private double totalTimeTakenInSeconds;
    private List filesGenerated = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy