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

com.fasc.open.api.bean.common.FieldPicture Maven / Gradle / Ivy

package com.fasc.open.api.bean.common;

public class FieldPicture {

    private Boolean required;
    private String defaultValue;
    private Integer width;
    private Integer height;

    public Integer getWidth() {
        return width;
    }

    public void setWidth(Integer width) {
        this.width = width;
    }

    public Integer getHeight() {
        return height;
    }

    public void setHeight(Integer height) {
        this.height = height;
    }

    public Boolean getRequired() {
        return required;
    }

    public void setRequired(Boolean required) {
        this.required = required;
    }

    public String getDefaultValue() {
        return defaultValue;
    }

    public void setDefaultValue(String defaultValue) {
        this.defaultValue = defaultValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy