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.
 
 

41 lines
683 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.Coffee
  8. {
  9. /// <summary>
  10. /// 模式设置
  11. /// </summary>
  12. public class MakeCoffeeEvent : IEvent
  13. {
  14. public DrCoffeeDrinksCode DrinkCode { get; set; }
  15. }
  16. /// <summary>
  17. /// 模式设置
  18. /// </summary>
  19. public class CancelMakeCoffeeEvent : IEvent
  20. {
  21. }
  22. /// <summary>
  23. /// 开始制作
  24. /// </summary>
  25. public class CoffeBeginCook : IEvent
  26. {
  27. }
  28. /// <summary>
  29. /// 结束制作
  30. /// </summary>
  31. public class CoffeEndCook : IEvent
  32. {
  33. }
  34. }