You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

44 lines
790 B

  1. using BPA.Utility;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HBLDevice.ICChip
  8. {
  9. public class TakeCupEvent : IEvent
  10. {
  11. /// <summary>
  12. /// 杯
  13. /// </summary>
  14. public IC_CUP Cup { get; set; }
  15. }
  16. public class MakeIceCreamEvent : IEvent
  17. {
  18. public IC_SE SteeringEngine { get; set; }
  19. }
  20. public class SESwitchCreamEvent : IEvent
  21. {
  22. public IC_SE SteeringEngine { get; set; }
  23. public bool IsOpen { get; set; }
  24. }
  25. public class RotorSwitchEvent : IEvent
  26. {
  27. public bool TurnOn { get; set; }
  28. }
  29. public class ArticleExitsEvent : IEvent
  30. {
  31. }
  32. public class ArticleDistEvent : IEvent
  33. {
  34. }
  35. }