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

model.ImageInfo Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)

public class ImageInfo {
    private String id;
    private String dimension;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getDimension() {
        return dimension;
    }

    public void setDimension(String dimension) {
        this.dimension = dimension;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy