com.clickntap.api.to.ImageSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
package com.clickntap.api.to;
import java.io.Serializable;
import java.util.List;
public class ImageSet implements Serializable {
private List images;
public List getImages() {
return images;
}
public void setImages(List images) {
this.images = images;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy