com.salesmanager.shop.model.content.ContentName 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;
/**
* Input Object used in REST request
* @author carlsamson
*
*/
public class ContentName extends Content {
/**
*
*/
private static final long serialVersionUID = 1L;
public ContentName() {
super();
}
public ContentName(String name) {
super(name);
}
public ContentName(String name, String contentType) {
super(name);
}
}