Files
T-DAS/Epost.DAL/Enum/LogType.cs

23 lines
394 B
C#
Raw Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class LogType
{
public enum Log_Type
{
[Description("错误日志")]
ERROR,
[Description("信息记录")]
INFO
}
}
}