终端一体化运控平台
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.
 
 
 

24 lines
400 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.KLMCoffee.Protocal
  7. {
  8. /// <summary>
  9. /// 饮品类型
  10. /// </summary>
  11. public enum DrinkType
  12. {
  13. 意式,
  14. 美式,
  15. 热水,
  16. 卡布,
  17. 玛奇朵,
  18. 拿铁,
  19. 热牛奶,
  20. 热奶沫
  21. }
  22. }