using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 环境 /// public enum Env { /// /// 生产环境 /// [Description("生产环境")] Production = 1, /// /// 开发环境 /// [Description("开发环境")] Dev = 0 } }