Checkpoint

This commit is contained in:
2020-05-01 05:08:04 -04:00
parent abba062f4f
commit 1a394ddb31
20 changed files with 239 additions and 102 deletions

13
Alpm/LogLevel.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
namespace Foodsoft.Alpm
{
[Flags]
public enum LogLevel
{
Error = 1,
Warning = (1 << 1),
Debug = (1 << 2),
Function = (1 << 3)
}
}