SlotItem.cs 477 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using MECF.Framework.Common.Equipment;
  7. namespace MECF.Framework.Common.Schedulers
  8. {
  9. //helper class
  10. public class SlotItem
  11. {
  12. public ModuleName Module { get; set; }
  13. public int Slot { get; set; }
  14. public SlotItem(ModuleName module, int slot)
  15. {
  16. Module = module;
  17. Slot = slot;
  18. }
  19. }
  20. }