mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
48 lines
900 B
C#
48 lines
900 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Library
|
|
{
|
|
/// <summary>
|
|
/// 信息输出等级
|
|
/// </summary>
|
|
public enum InfoClass
|
|
{
|
|
/// <summary>
|
|
/// 琐碎的
|
|
/// </summary>
|
|
Trivial,
|
|
/// <summary>
|
|
/// 一般的
|
|
/// </summary>
|
|
General,
|
|
/// <summary>
|
|
/// 重要的
|
|
/// </summary>
|
|
Important,
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 信息类别
|
|
/// </summary>
|
|
public enum InfoType
|
|
{
|
|
/// <summary>
|
|
/// 普通信息
|
|
/// </summary>
|
|
INFO,
|
|
/// <summary>
|
|
/// 错误信息(但不影响运行)
|
|
/// </summary>
|
|
WARN,
|
|
/// <summary>
|
|
/// 异常信息(影响了运行)
|
|
/// </summary>
|
|
ERROR,
|
|
}
|
|
}
|