Den Fehler in der WithFlag-Methode behoben und die Enum-Übersetzung integriert.

This commit is contained in:
Developer 02
2024-04-26 10:06:28 +02:00
parent 8e9dd5b0f9
commit 1e3c5755c4
33 changed files with 165 additions and 370 deletions

View File

@@ -0,0 +1,43 @@
namespace DigitalData.Core.Application
{
/// <summary>
/// Specifies the destination of a message.
/// </summary>
public enum To
{
/// <summary>
/// Indicates that the message is intended for the client.
/// </summary>
Client,
/// <summary>
/// Indicates that the message is intended for tracing purposes.
/// </summary>
Trace,
/// <summary>
/// Indicates that the message is intended for debugging purposes.
/// </summary>
Debug,
/// <summary>
/// Indicates that the message is informational.
/// </summary>
Information,
/// <summary>
/// Indicates that the message is a warning.
/// </summary>
Warning,
/// <summary>
/// Indicates that the message represents an error.
/// </summary>
Error,
/// <summary>
/// Indicates that the message represents a critical issue.
/// </summary>
Critical
}
}