Add shared packages

This commit is contained in:
Guilherme Werner 2025-06-02 08:58:34 -03:00
parent 6ebfde013a
commit 5b2588b47f
32 changed files with 981 additions and 7 deletions

View file

@ -0,0 +1,22 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
namespace Tribufu.Logging
{
public enum LogLevel : byte
{
Off = 0,
Trace = 1,
Debug = 2,
Info = 3,
Warn = 4,
Error = 5,
All = 6,
}
}