/** * 命名空间: BPA.Kitchen.Core.Common.Enum * * 功 能: N/A * 类 名: GoodsAttribute * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2022/6/24 10:04:06 唐学波 初版 * * Copyright (c) 2022 BlackB Corporation. All rights reserved. */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.KitChen.GroupMealOrder.Core.Enum { /// /// 商品属性 /// public enum GoodsAttribute { /// /// 单品 /// SingleGoods = 0, /// /// 套餐 /// ComboGoods = 1, } }