13 lines
192 B
C#
13 lines
192 B
C#
using System;
|
|
|
|
namespace Foodsoft.Alpm
|
|
{
|
|
[Flags]
|
|
public enum LogLevel
|
|
{
|
|
Error = 1,
|
|
Warning = (1 << 1),
|
|
Debug = (1 << 2),
|
|
Function = (1 << 3)
|
|
}
|
|
} |