FactorySetup.cs 724 B

123456789101112131415161718192021222324
  1. using InABox.Configuration;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class FactorySetup : GlobalConfigurationSettings
  6. {
  7. public FactorySetup()
  8. {
  9. Groups = new PackableList<FactoryGroup>();
  10. Sections = new PackableList<FactorySection>();
  11. Templates = new PackableList<FactoryTemplate>();
  12. TemplateItems = new PackableList<FactoryTemplateItem>();
  13. }
  14. public PackableList<FactoryGroup> Groups { get; set; }
  15. public PackableList<FactorySection> Sections { get; set; }
  16. public PackableList<FactoryTemplateItem> TemplateItems { get; set; }
  17. public PackableList<FactoryTemplate> Templates { get; set; }
  18. }
  19. }