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