24 lines
407 B
C#
24 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SteamWare.Logger
|
|
{
|
|
public class Constants
|
|
{
|
|
#region Public Enums
|
|
|
|
public enum ERROR_LEVEL
|
|
{
|
|
Info = 1,
|
|
Warning,
|
|
Error,
|
|
Exception,
|
|
Fatal
|
|
}
|
|
|
|
#endregion Public Enums
|
|
}
|
|
} |