| 123456789101112131415161718192021222324 | using InABox.Configuration;using InABox.Core;namespace Comal.Classes{    public class FactorySetup : GlobalConfigurationSettings    {        public FactorySetup()        {            Groups = new PackableList<FactoryGroup>();            Sections = new PackableList<FactorySection>();            Templates = new PackableList<FactoryTemplate>();            TemplateItems = new PackableList<FactoryTemplateItem>();        }        public PackableList<FactoryGroup> Groups { get; set; }        public PackableList<FactorySection> Sections { get; set; }        public PackableList<FactoryTemplateItem> TemplateItems { get; set; }        public PackableList<FactoryTemplate> Templates { get; set; }    }}
 |