using InABox.Configuration; using InABox.Core; namespace Comal.Classes { public class FactorySetup : GlobalConfigurationSettings { public FactorySetup() { Groups = new PackableList(); Sections = new PackableList(); Templates = new PackableList(); TemplateItems = new PackableList(); } public PackableList Groups { get; set; } public PackableList Sections { get; set; } public PackableList TemplateItems { get; set; } public PackableList Templates { get; set; } } }