16 lines
144 B
C#
16 lines
144 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Common
|
|||
|
{
|
|||
|
public enum LogLevel : byte
|
|||
|
{
|
|||
|
All,
|
|||
|
Trace,
|
|||
|
Debug,
|
|||
|
Info,
|
|||
|
Warn,
|
|||
|
Error,
|
|||
|
Fatal
|
|||
|
}
|
|||
|
}
|