99
This commit is contained in:
27
Reportapi/MyCode.Project.Infrastructure/Enumeration/Env.cs
Normal file
27
Reportapi/MyCode.Project.Infrastructure/Enumeration/Env.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Enumeration
|
||||
{
|
||||
/// <summary>
|
||||
/// 环境
|
||||
/// </summary>
|
||||
public enum Env
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产环境
|
||||
/// </summary>
|
||||
[Description("生产环境")]
|
||||
Production = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 开发环境
|
||||
/// </summary>
|
||||
[Description("开发环境")]
|
||||
Dev = 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user