using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumKeywordUseFor { [Note("网站使用")] Site = 1, [Note("微信订阅号")] WxDyh = 2, [Note("微信服务号")] WxFwh = 3, [Note("IOS")] IOS = 4, [Note("Android")] Android = 5 } }