com.salesmanager.shop.model.content.ContentFolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.content;
import java.util.ArrayList;
import java.util.List;
/**
* Folder containing content
* images and other files
* @author carlsamson
*
*/
public class ContentFolder {
private String path;
List content = new ArrayList();
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public List getContent() {
return content;
}
public void setContent(List content) {
this.content = content;
}
}