
net.intelie.liverig.plugin.widgets.AssetWidgetConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.List;
public class AssetWidgetConfig {
@NotNull
private List assets = new ArrayList<>();
private boolean download;
@NotNull
public List getAssets() {
return assets;
}
public void setAssets(@NotNull List assets) {
this.assets = assets;
}
public boolean isDownload() {
return download;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy