23 lines
394 B
C#
23 lines
394 B
C#
![]() |
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
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|