|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.KLMCoffee.Protocal
- {
- /// <summary>
- /// 饮品类型
- /// </summary>
- public enum DrinkType
- {
- 意式,
- 美式,
- 热水,
- 卡布,
- 玛奇朵,
- 拿铁,
- 热牛奶,
- 热奶沫
- }
- }
|