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.
 
 

42 lines
713 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. using static HBLDevice.IceCream.MessageDefine;
  8. namespace HBLDevice.IceCream
  9. {
  10. /// <summary>
  11. /// 模式设置
  12. /// </summary>
  13. public class ModeSetEvent:IEvent
  14. {
  15. public MORKI_MODE Mode { get; set; }
  16. }
  17. /// <summary>
  18. /// 出料设置
  19. /// </summary>
  20. public class DischargeEvent : IEvent
  21. {
  22. }
  23. /// <summary>
  24. /// 开始制作
  25. /// </summary>
  26. public class IceCreamBeginCook : IEvent
  27. {
  28. }
  29. /// <summary>
  30. /// 结束制作
  31. /// </summary>
  32. public class IceCreamEndCook : IEvent
  33. {
  34. }
  35. }