org.schema.MensClothingStore Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/MensClothingStore
* A men's clothing store.
*
* @author schema.org
* @class MensClothingStore
* @module org.schema
* @extends Store
*/
public class MensClothingStore extends Store {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public MensClothingStore() {
context = "http://schema.org/";
type = "MensClothingStore";
}
}