package org.aksw.xoperator.aiml;
import java.util.ArrayList;
import java.util.List;
/**
* the object representation of the configuartion files for the aiml frontend.
* @author joerg
*
*/
public class TemplateConfiguration {
private List<AimlCategory> userDefined = new ArrayList<AimlCategory>();
private List<AimlCategory> defaults = new ArrayList<AimlCategory>();
}
|